comparison pidgin/plugins/notify.c @ 29663:af5c36fe8d6f

propagate from branch 'im.pidgin.pidgin' (head e602a35f60e3d423d43bacc72fcb7239c8b43cf0) to branch 'im.pidgin.cpw.attention_ui' (head d6e2d83ffb82d0028d802e5959d57de1d61b4faf)
author Marcus Lundblad <ml@update.uu.se>
date Tue, 13 Jan 2009 18:39:52 +0000
parents 533d37757363
children 37b668b8d6c1
comparison
equal deleted inserted replaced
29662:9ea6842536ba 29663:af5c36fe8d6f
553 GDK_PROP_MODE_REPLACE, (guchar *) &count, 1); 553 GDK_PROP_MODE_REPLACE, (guchar *) &count, 1);
554 #endif 554 #endif
555 } 555 }
556 556
557 static void 557 static void
558 handle_urgent(PidginWindow *win, gboolean set) 558 handle_urgent(PidginWindow *purplewin, gboolean set)
559 { 559 {
560 pidgin_set_urgent(GTK_WINDOW(win->window), set); 560 g_return_if_fail(purplewin != NULL);
561 g_return_if_fail(purplewin->window != NULL);
562
563 pidgin_set_urgent(GTK_WINDOW(purplewin->window), set);
561 } 564 }
562 565
563 static void 566 static void
564 handle_raise(PidginWindow *purplewin) 567 handle_raise(PidginWindow *purplewin)
565 { 568 {