Updating branch refs/heads/libxfce4ui
         to 9dc8058cc72e83c2f788c46afa1f64e645e11cfa (commit)
       from dbe4b0cfff338b8b16ab6b8f07377d4479a531c5 (commit)

commit 9dc8058cc72e83c2f788c46afa1f64e645e11cfa
Author: Olivier Fourdan <four...@xfce.org>
Date:   Fri Sep 4 14:20:50 2009 +0200

    Remove debug message

 src/cycle.c   |   10 ++--------
 src/parserc.c |    1 -
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/src/cycle.c b/src/cycle.c
index a043016..a4cfac9 100644
--- a/src/cycle.c
+++ b/src/cycle.c
@@ -94,18 +94,12 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
     {
         case DestroyNotify:
             if ((removed = myScreenGetClientFromWindow (screen_info, 
((XDestroyWindowEvent *) xevent)->window, SEARCH_WINDOW)) == NULL)
-            {
-                /* No need to go any further */
-                break;
-            }
+                break; /* No need to go any further */
             gone |= (c == removed);
             /* Walk through */
         case UnmapNotify:
             if (!removed && (removed = myScreenGetClientFromWindow 
(screen_info, ((XUnmapEvent *) xevent)->window, SEARCH_WINDOW)) == NULL)
-            {
-                /* No need to go any further */
-                break;
-            }
+                break; /* No need to go any further */
             gone |= (c == removed);
             c = tabwinRemoveClient(passdata->tabwin, removed);
             passdata->c = c;
diff --git a/src/parserc.c b/src/parserc.c
index 56cd056..5f2eb66 100644
--- a/src/parserc.c
+++ b/src/parserc.c
@@ -344,7 +344,6 @@ getBoolValue (const gchar *option, Settings *rc)
         {
             if (rc[i].value == NULL)
                 return FALSE;
-            g_print ("Reading option %s\n", option);
             g_return_val_if_fail(G_VALUE_TYPE(rc[i].value) == G_TYPE_BOOLEAN, 
FALSE);
             return g_value_get_boolean(rc[i].value);
         }
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to