summaryrefslogtreecommitdiffstats
path: root/misc/gcolor2/main.c.patch
blob: 958e394cdb9b6e32ae5d9f0b3c33af180bd62b25 (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
--- gcolor2-0.4.orig/src/main.c
+++ gcolor2-0.4/src/main.c
@@ -4,11 +4,15 @@
 
 #include <gtk/gtk.h>
 #include <stdio.h>
-
 #include "interface.h"
 #include "support.h"
 #include "callbacks.h"
 
+/* missing headers on original file */
+#include <stdlib.h>
+#include <string.h>
+#include <glib/gprintf.h>
+
 GtkListStore *liststore;
 GdkWindow    *gdkwin;
 gchar        *user_filename;
@@ -48,8 +52,9 @@
 
 void add_list_color (gchar *spec, gchar *name, gchar *type, gboolean is_new_color)
 {
+/* pixmap and mask don't used
 	GdkPixmap   *pixmap;
-	GdkBitmap   *mask;
+	GdkBitmap   *mask; */
 	GdkPixbuf   *buf;
 	GtkTreeIter  iter;
 	
@@ -103,7 +108,7 @@
 	gchar *name;
 	gchar  buffer[512];
 	gchar  spec[8];
-	gint   r, g, b, lr, lg, lb;
+	gint   r, g, b, lr=0, lg=0, lb=0;
 	
 	fp = fopen (filename, "r");
 	if (!fp)
@@ -140,7 +145,8 @@
 	GtkTreeViewColumn *column;
 	GtkWidget         *treeview;
 	GtkTreeSelection  *select;
-	gchar             *buf;
+/* dont used
+	gchar             *buf; */
 	
 #ifdef ENABLE_NLS
 	bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);