comparison console/libgnt/gntwidget.c @ 13979:a71678d2da16

[gaim-migrate @ 16540] Complete the notify-ui. I have been unable to test the searchresult-ui. But "looks like" it will work. The accounts-ui is also mostly . I am yet to add the proxy-options. And you cannot still delete an account. That will happen after the request-ui is complete. The account-edit dialog needs some work, but it's usable. Added GntCheckBox, and add some features to some other gnt-widgets. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 23 Jul 2006 01:10:06 +0000
parents 25be562aaca8
children c9509bd42d7a
comparison
equal deleted inserted replaced
13978:ea00953490a8 13979:a71678d2da16
487 return FALSE; 487 return FALSE;
488 } 488 }
489 489
490 void gnt_widget_queue_update(GntWidget *widget) 490 void gnt_widget_queue_update(GntWidget *widget)
491 { 491 {
492 if (widget->window == NULL)
493 return;
492 while (widget->parent) 494 while (widget->parent)
493 widget = widget->parent; 495 widget = widget->parent;
494 496
495 if (!g_object_get_data(G_OBJECT(widget), "gnt:queue_update")) 497 if (!g_object_get_data(G_OBJECT(widget), "gnt:queue_update"))
496 { 498 {