← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~agateau/libindicate/fix-listener-server-get-count into lp:libindicate

 

Aurélien Gâteau has proposed merging lp:~agateau/libindicate/fix-listener-server-get-count into lp:libindicate.

Requested reviews:
    Indicator Applet Developers (indicator-applet-developers)
-- 
https://code.launchpad.net/~agateau/libindicate/fix-listener-server-get-count/+merge/11962
Your team ayatana-commits is subscribed to branch lp:libindicate.
=== modified file 'libindicate/server.c'
--- libindicate/server.c	2009-09-14 15:39:07 +0000
+++ libindicate/server.c	2009-09-17 12:07:00 +0000
@@ -428,7 +428,7 @@
 static void
 set_property (GObject * obj, guint id, const GValue * value, GParamSpec * pspec)
 {
-	g_return_if_fail(G_VALUE_HOLDS_STRING(value));
+	g_return_if_fail(G_VALUE_HOLDS_STRING(value) || G_VALUE_HOLDS_UINT(value));
 	g_return_if_fail(id == PROP_DESKTOP || id == PROP_TYPE || id == PROP_COUNT);
 
 	IndicateServerPrivate * priv = INDICATE_SERVER_GET_PRIVATE(obj);


Follow ups