Author: olivier
Date: 2008-11-02 17:48:43 +0000 (Sun, 02 Nov 2008)
New Revision: 28586

Modified:
   xfwm4/trunk/ChangeLog
   xfwm4/trunk/settings-dialogs/tweaks-settings.c
   xfwm4/trunk/src/client.c
   xfwm4/trunk/src/settings.c
Log:
        * settings-dialogs/tweaks-settings.c, src/settings.c, src/client.c: Fix
          indentation. 
 

Modified: xfwm4/trunk/ChangeLog
===================================================================
--- xfwm4/trunk/ChangeLog       2008-11-02 17:45:46 UTC (rev 28585)
+++ xfwm4/trunk/ChangeLog       2008-11-02 17:48:43 UTC (rev 28586)
@@ -1,5 +1,11 @@
 2008-11-02  olivier
 
+       * settings-dialogs/tweaks-settings.c, src/settings.c, src/client.c: Fix
+         indentation.
+.
+
+2008-11-02  olivier
+
        * settings-dialogs/xfwm4-tweaks-dialog.glade, 
          settings-dialogs/tweaks-settings.c, src/settings.c, src/settings.h, 
          src/client.c, src/client.h, defaults/defaults: Add new option do 

Modified: xfwm4/trunk/settings-dialogs/tweaks-settings.c
===================================================================
--- xfwm4/trunk/settings-dialogs/tweaks-settings.c      2008-11-02 17:45:46 UTC 
(rev 28585)
+++ xfwm4/trunk/settings-dialogs/tweaks-settings.c      2008-11-02 17:48:43 UTC 
(rev 28586)
@@ -333,8 +333,8 @@
                             "/general/repeat_urgent_blink",
                             G_TYPE_BOOLEAN,
                             (GObject *)repeat_urgent_blink, "active");
-    gtk_widget_set_sensitive (repeat_urgent_blink, 
-                                 gtk_toggle_button_get_active 
(GTK_TOGGLE_BUTTON (urgent_blink)));
+    gtk_widget_set_sensitive (repeat_urgent_blink,
+                              gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON 
(urgent_blink)));
 
     /* Workspaces tab */
     xfconf_g_property_bind (xfwm4_channel,

Modified: xfwm4/trunk/src/client.c
===================================================================
--- xfwm4/trunk/src/client.c    2008-11-02 17:45:46 UTC (rev 28585)
+++ xfwm4/trunk/src/client.c    2008-11-02 17:48:43 UTC (rev 28586)
@@ -353,48 +353,48 @@
 
     if (c != clientGetFocus ())
     {
-               /* 
-                * If we do not blink on urgency, check if the window was last
-                * drawn focused and redraw it unfocused.
-                * This is for th case when the tuser changes the settings
-                * in between two redraws.
-                */
+        /*
+         * If we do not blink on urgency, check if the window was last
+         * drawn focused and redraw it unfocused.
+         * This is for th case when the tuser changes the settings
+         * in between two redraws.
+         */
         if (!screen_info->params->urgent_blink)
-               {
-                       if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_SEEN_ACTIVE))
-                   {
+        {
+            if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_SEEN_ACTIVE))
+            {
                 FLAG_TOGGLE (c->xfwm_flags, XFWM_FLAG_SEEN_ACTIVE);
                 frameQueueDraw (c, FALSE);
-                   }
+            }
 
             if (c->blink_iterations)
             {
                 c->blink_iterations = 0;
             }
-                       return TRUE;
-               }
-               /*
-                * If we blink on urgency, check if we've not reach the number
-                * of iterations and if not, simply change the status and redraw
-                */
+            return TRUE;
+        }
+        /*
+         * If we blink on urgency, check if we've not reach the number
+         * of iterations and if not, simply change the status and redraw
+         */
         if (c->blink_iterations < (2 * MAX_BLINK_ITERATIONS))
-               {
+        {
             c->blink_iterations++;
             FLAG_TOGGLE (c->xfwm_flags, XFWM_FLAG_SEEN_ACTIVE);
             frameQueueDraw (c, FALSE);
-                       return TRUE;
-               }
-               /*
-                * If we reached the max number of iterations, check if we
-                * repeat. If repeat_urgent_blink is set, redraw the frame and
-                * restart counting from 1
-                */
+            return TRUE;
+        }
+        /*
+         * If we reached the max number of iterations, check if we
+         * repeat. If repeat_urgent_blink is set, redraw the frame and
+         * restart counting from 1
+         */
         if (screen_info->params->repeat_urgent_blink)
         {
             FLAG_TOGGLE (c->xfwm_flags, XFWM_FLAG_SEEN_ACTIVE);
             frameQueueDraw (c, FALSE);
             c->blink_iterations = 1;
-                       return TRUE;
+            return TRUE;
         }
     }
     else if (c->blink_iterations)

Modified: xfwm4/trunk/src/settings.c
===================================================================
--- xfwm4/trunk/src/settings.c  2008-11-02 17:45:46 UTC (rev 28585)
+++ xfwm4/trunk/src/settings.c  2008-11-02 17:48:43 UTC (rev 28586)
@@ -19,6 +19,7 @@
         oroborus - (c) 2001 Ken Lynch
         xfwm4    - (c) 2002-2008 Olivier Fourdan,
                        2008 Jannis Pohlmann
+
  */
 
 #ifdef HAVE_CONFIG_H

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to