[Goodies-commits] r7282 - in xfce4-clipman-plugin/trunk: . panel-plugin

Mike Massonnet mmassonnet at xfce.org
Fri Apr 24 09:38:12 CEST 2009


Author: mmassonnet
Date: 2009-04-24 07:38:12 +0000 (Fri, 24 Apr 2009)
New Revision: 7282

Modified:
   xfce4-clipman-plugin/trunk/ChangeLog
   xfce4-clipman-plugin/trunk/panel-plugin/main.c
Log:
Fix dummy warning

Modified: xfce4-clipman-plugin/trunk/ChangeLog
===================================================================
--- xfce4-clipman-plugin/trunk/ChangeLog	2009-04-23 14:11:08 UTC (rev 7281)
+++ xfce4-clipman-plugin/trunk/ChangeLog	2009-04-24 07:38:12 UTC (rev 7282)
@@ -1,4 +1,7 @@
 2009-04-23	Mike Massonnet
+Fix dummy warning
+
+2009-04-23	Mike Massonnet
 Use stock item for the main icon
 
 	- panel-plugin/main.c(cb_status_icon_set_size),

Modified: xfce4-clipman-plugin/trunk/panel-plugin/main.c
===================================================================
--- xfce4-clipman-plugin/trunk/panel-plugin/main.c	2009-04-23 14:11:08 UTC (rev 7281)
+++ xfce4-clipman-plugin/trunk/panel-plugin/main.c	2009-04-24 07:38:12 UTC (rev 7282)
@@ -1419,7 +1419,8 @@
 
   if (action_name[0] != '\0' && regex_pattern[0] != '\0' && has_commands)
     {
-      if (regex = g_regex_new (regex_pattern, 0, 0, NULL))
+      regex = g_regex_new (regex_pattern, 0, 0, NULL);
+      if (regex != NULL)
         {
           sensitive = TRUE;
           g_regex_unref (regex);




More information about the Goodies-commits mailing list