pidgin/gtknotify.c

changeset 42202
2273647d24b0
parent 42094
2707c81648a0
child 42216
76245ac5cf36
equal deleted inserted replaced
42201:f4c0e44c3e20 42202:2273647d24b0
221 221
222 g_object_set_data(G_OBJECT(dialog), "pidgin-parent-from", 222 g_object_set_data(G_OBJECT(dialog), "pidgin-parent-from",
223 purple_request_cpar_get_parent_from(cpar)); 223 purple_request_cpar_get_parent_from(cpar));
224 pidgin_auto_parent_window(dialog); 224 pidgin_auto_parent_window(dialog);
225 225
226 gtk_widget_show(dialog); 226 gtk_widget_set_visible(dialog, TRUE);
227 227
228 return dialog; 228 return dialog;
229 } 229 }
230 230
231 static gboolean 231 static gboolean
319 g_object_set_data(G_OBJECT(window), "view-widget", view); 319 g_object_set_data(G_OBJECT(window), "view-widget", view);
320 320
321 /* Show the window */ 321 /* Show the window */
322 pidgin_auto_parent_window(window); 322 pidgin_auto_parent_window(window);
323 323
324 gtk_widget_show(window); 324 gtk_widget_set_visible(window, TRUE);
325 325
326 return window; 326 return window;
327 } 327 }
328 328
329 static void 329 static void
522 pidgin_notify_searchresults_new_rows(gc, results, data); 522 pidgin_notify_searchresults_new_rows(gc, results, data);
523 523
524 /* Show the window */ 524 /* Show the window */
525 pidgin_auto_parent_window(window); 525 pidgin_auto_parent_window(window);
526 526
527 gtk_widget_show(window); 527 gtk_widget_set_visible(window, TRUE);
528 return data; 528 return data;
529 } 529 }
530 530
531 /* Xerox'ed from Finch! How the tables have turned!! ;) */ 531 /* Xerox'ed from Finch! How the tables have turned!! ;) */
532 /* User information. */ 532 /* User information. */

mercurial