← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~ted/indicator-datetime/no-error-with-no-proxy into lp:indicator-datetime

 

Ted Gould has proposed merging lp:~ted/indicator-datetime/no-error-with-no-proxy into lp:indicator-datetime.

Requested reviews:
  Indicator Applet Developers (indicator-applet-developers)

For more details, see:
https://code.launchpad.net/~ted/indicator-datetime/no-error-with-no-proxy/+merge/48109

Don't error when we don't get the proxy.  It makes people sad.  And Unity crash.
-- 
https://code.launchpad.net/~ted/indicator-datetime/no-error-with-no-proxy/+merge/48109
Your team ayatana-commits is subscribed to branch lp:indicator-datetime.
=== modified file 'src/indicator-datetime.c'
--- src/indicator-datetime.c	2011-01-27 22:34:06 +0000
+++ src/indicator-datetime.c	2011-02-01 04:32:57 +0000
@@ -330,7 +330,7 @@
 	}
 
 	if (error != NULL) {
-		g_error("Could not grab DBus proxy for %s: %s", SERVICE_NAME, error->message);
+		g_warning("Could not grab DBus proxy for %s: %s", SERVICE_NAME, error->message);
 		g_error_free(error);
 		return;
 	}


Follow ups