Mercurial > pidgin
changeset 18029:9e648622bf72
Fix this compile warning:
gtknotify.c: In function ?pidgin_notify_searchresults?:
gtknotify.c:714: warning: ?window? is used uninitialized in this function
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sat, 02 Jun 2007 11:41:18 +0000 |
| parents | 2754427b85ca |
| children | 62a71bb085ef |
| files | pidgin/gtknotify.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtknotify.c Sat Jun 02 03:15:35 2007 +0000 +++ b/pidgin/gtknotify.c Sat Jun 02 11:41:18 2007 +0000 @@ -710,7 +710,7 @@ data->results = results; /* Create the window */ - pidgin_create_window(title ? title :_("Search Results"), PIDGIN_HIG_BORDER, NULL, TRUE); + window = pidgin_create_window(title ? title :_("Search Results"), PIDGIN_HIG_BORDER, NULL, TRUE); gtk_window_set_type_hint(GTK_WINDOW(window), GDK_WINDOW_TYPE_HINT_DIALOG); g_signal_connect_swapped(G_OBJECT(window), "delete_event",
