Revision: 18003
http://svn.sourceforge.net/gaim/?rev=18003&view=rev
Author: thekingant
Date: 2006-12-14 18:48:27 -0800 (Thu, 14 Dec 2006)
Log Message:
-----------
Get rid of some warnings. It might be good if it were possible
to close email notifications in the buddylist. I dunno.
Modified Paths:
--------------
trunk/gtk/gtknotify.c
Modified: trunk/gtk/gtknotify.c
===================================================================
--- trunk/gtk/gtknotify.c 2006-12-15 02:42:07 UTC (rev 18002)
+++ trunk/gtk/gtknotify.c 2006-12-15 02:48:27 UTC (rev 18003)
@@ -343,14 +343,14 @@
GAIM_STOCK_ICON_ONLINE_MSG, GTK_ICON_SIZE_BUTTON, NULL);
char *label_text = g_strdup_printf(ngettext("<b>You have %d new e-mail.</b>",
"<b>You have %d new e-mails.</b>",
- count),count);
+ count), (int)count);
inbox->handle = gc;
inbox->url = urls ? g_strdup(urls[0]) : NULL;
gaim_gtk_blist_set_headline(label_text,
pixbuf, G_CALLBACK(open_inbox_cb), inbox);
g_object_unref(pixbuf);
- return;
+ return NULL;
}
if (mail_dialog == NULL || !detailed)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|