From: <the...@us...> - 2006-10-16 14:50:29
|
Revision: 17485 http://svn.sourceforge.net/gaim/?rev=17485&view=rev Author: thekingant Date: 2006-10-16 07:50:20 -0700 (Mon, 16 Oct 2006) Log Message: ----------- Get rid of some unused variables Modified Paths: -------------- trunk/console/libgnt/gntentry.c trunk/console/libgnt/gntmenu.c trunk/console/libgnt/gnttextview.c trunk/console/libgnt/gntwindow.c trunk/gtk/plugins/spellchk.c Modified: trunk/console/libgnt/gntentry.c =================================================================== --- trunk/console/libgnt/gntentry.c 2006-10-15 16:30:50 UTC (rev 17484) +++ trunk/console/libgnt/gntentry.c 2006-10-16 14:50:20 UTC (rev 17485) @@ -12,7 +12,6 @@ }; static GntWidgetClass *parent_class = NULL; -static guint signals[SIGS] = { 0 }; static void destroy_suggest(GntEntry *entry) Modified: trunk/console/libgnt/gntmenu.c =================================================================== --- trunk/console/libgnt/gntmenu.c 2006-10-15 16:30:50 UTC (rev 17484) +++ trunk/console/libgnt/gntmenu.c 2006-10-16 14:50:20 UTC (rev 17485) @@ -8,7 +8,6 @@ }; static GntTreeClass *parent_class = NULL; -static guint signals[SIGS] = { 0 }; static void (*org_draw)(GntWidget *wid); static void (*org_destroy)(GntWidget *wid); Modified: trunk/console/libgnt/gnttextview.c =================================================================== --- trunk/console/libgnt/gnttextview.c 2006-10-15 16:30:50 UTC (rev 17484) +++ trunk/console/libgnt/gnttextview.c 2006-10-16 14:50:20 UTC (rev 17485) @@ -24,7 +24,6 @@ } GntTextLine; static GntWidgetClass *parent_class = NULL; -static guint signals[SIGS] = { 0 }; static void gnt_text_view_draw(GntWidget *widget) Modified: trunk/console/libgnt/gntwindow.c =================================================================== --- trunk/console/libgnt/gntwindow.c 2006-10-15 16:30:50 UTC (rev 17484) +++ trunk/console/libgnt/gntwindow.c 2006-10-16 14:50:20 UTC (rev 17485) @@ -8,7 +8,6 @@ }; static GntBoxClass *parent_class = NULL; -static guint signals[SIGS] = { 0 }; static gboolean (*org_keypress)(GntWidget *widget, const char *text); static void (*org_destroy)(GntWidget *widget); Modified: trunk/gtk/plugins/spellchk.c =================================================================== --- trunk/gtk/plugins/spellchk.c 2006-10-15 16:30:50 UTC (rev 17484) +++ trunk/gtk/plugins/spellchk.c 2006-10-16 14:50:20 UTC (rev 17485) @@ -304,8 +304,6 @@ gunichar ucs4_char = gtk_text_iter_get_char(iter); gchar *utf8_str; gchar c = 0; - gboolean result; - gboolean output; utf8_str = g_ucs4_to_utf8(&ucs4_char, 1, NULL, NULL, NULL); if (utf8_str != NULL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |