[Galago-commits] r3030 - in trunk/notification-daemon: . src/daemon

galago-commits at freedesktop.org galago-commits at freedesktop.org
Fri Jan 23 01:29:26 PST 2009


Author: chipx86
Date: 2009-01-23 01:29:25 -0800 (Fri, 23 Jan 2009)
New Revision: 3030

Modified:
   trunk/notification-daemon/ChangeLog
   trunk/notification-daemon/src/daemon/engines.c
Log:
Fix a problem when using themes that aren't version-compatible with notification-daemon. We were exiting when we should have just used the standard theme.


Modified: trunk/notification-daemon/ChangeLog
===================================================================
--- trunk/notification-daemon/ChangeLog	2009-01-14 06:49:01 UTC (rev 3029)
+++ trunk/notification-daemon/ChangeLog	2009-01-23 09:29:25 UTC (rev 3030)
@@ -1,3 +1,10 @@
+Fri Jan 23 01:28:28 PST 2009  Christian Hammond <chipx86 at chipx86.com>
+
+	* src/daemon/engines.c:
+	  - Fix a problem when using themes that aren't version-compatible with
+	    notification-daemon. We were exiting when we should have just used
+	    the standard theme.
+
 Tue Jan 13 22:48:19 PST 2009  Christian Hammond <chipx86 at chipx86.com>
 
 	* src/daemon/sound.c:

Modified: trunk/notification-daemon/src/daemon/engines.c
===================================================================
--- trunk/notification-daemon/src/daemon/engines.c	2009-01-14 06:49:01 UTC (rev 3029)
+++ trunk/notification-daemon/src/daemon/engines.c	2009-01-23 09:29:25 UTC (rev 3030)
@@ -88,7 +88,7 @@
 								  NOTIFICATION_DAEMON_MINOR_VERSION,
 								  NOTIFICATION_DAEMON_MICRO_VERSION))
 	{
-		g_error("Theme doesn't work with this version of notification-daemon");
+		g_warning("Theme doesn't work with this version of notification-daemon");
 		goto error;
 	}
 



More information about the galago-commits mailing list