summaryrefslogtreecommitdiffstats
path: root/desktop/wmtimer/compilefix.diff
blob: f8776af623f2c4c6a85cf330965ef5ade1517cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
diff -Naur wmtimer-2.92.orig/wmtimer/wmtimer.c wmtimer-2.92/wmtimer/wmtimer.c
--- wmtimer-2.92.orig/wmtimer/wmtimer.c	2004-01-28 21:45:48.000000000 -0500
+++ wmtimer-2.92/wmtimer/wmtimer.c	2016-08-16 04:10:54.620304460 -0400
@@ -5,6 +5,8 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
+#include <stdlib.h>
+#include <ctype.h>
 
 #include <sys/wait.h>
 #include <sys/param.h>
@@ -55,11 +57,6 @@
 int delete_event(GtkWidget *widget, GdkEvent *event, gpointer data);
 void destroy(GtkWidget *widget, gpointer data);
 
-// Functions to avoid 'implicit declaration' warnings
-int atoi();
-char toupper();
-
-
 /*******************************************************************************
  * Globals 
  ******************************************************************************/
@@ -568,20 +565,21 @@
  ******************************************************************************/
 void callback(GtkWidget * widget, gpointer data)
 {
-  if ((char *) data == "alarm_button")
+	char *arg = (char *)data;
+  if (strcmp(arg, "alarm_button") == 0)
     tmpMode = ALARM;
-  else if ((char *) data == "timer_button")
+  else if (strcmp(arg, "timer_button") == 0)
     tmpMode = TIMER;
-  else if ((char *) data == "chrono_button")
+  else if (strcmp(arg, "chrono_button") == 0)
     tmpMode = CHRONO;
-  else if ((char *) data == "bell_button")
+  else if (strcmp(arg, "bell_button") == 0)
   {
     if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
       tmpAction.bell = 1;
     else
       tmpAction.bell = 0;
   }
-  else if ((char *) data == "command_button")
+  else if (strcmp(arg, "command_button") == 0)
   {
     if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) 
     {
@@ -596,7 +594,7 @@
       gtk_entry_set_editable(GTK_ENTRY (entry), FALSE);
     }
   }
-  else if ((char *) data == "ok")
+  else if (strcmp(arg, "ok") == 0)
   {
     if (tmpAction.command)
       strcpy(command, gtk_entry_get_text(GTK_ENTRY (entry)));