]> Dogcows Code - chaz/openbox/commitdiff
Convert two // to /*
authorMikael Magnusson <mikachu@gmail.com>
Sun, 11 Aug 2013 00:03:23 +0000 (02:03 +0200)
committerMikael Magnusson <mikachu@gmail.com>
Sun, 11 Aug 2013 00:03:23 +0000 (02:03 +0200)
openbox/actions/resizerelative.c
openbox/event.c

index a4739104631f22a510469cb99b1dbe8e273b394e..74a3bd745a08e1301da9a201307d395a60160d2e 100644 (file)
@@ -87,9 +87,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
         if (bottom && ABS(bottom) < c->size_inc.height)
             bottom = bottom < 0 ? -c->size_inc.height : c->size_inc.height;
 
-        // When resizing, if the resize has a non-zero value then make sure it
-        // is at least as big as the size increment so the window does actually
-        // resize.
+        /* When resizing, if the resize has a non-zero value then make sure it
+           is at least as big as the size increment so the window does actually
+           resize. */
         x = c->area.x;
         y = c->area.y;
         ow = c->area.width;
index ccbb56e6ad5b3f6036e0404e744be94b32b9cbf0..1b3a0e4674f85e8636ba315e87202da8bc5d50ad 100644 (file)
@@ -2004,9 +2004,9 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
 
     switch (ev->type) {
     case MotionNotify:
-        // We need to catch MotionNotify in addition to EnterNotify because
-        // it is possible for the menu to be opened under the mouse cursor, and
-        // moving the mouse should select the item.
+        /* We need to catch MotionNotify in addition to EnterNotify because
+           it is possible for the menu to be opened under the mouse cursor, and
+           moving the mouse should select the item. */
         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xmotion.window))) {
             if (e->ignore_enters)
                 --e->ignore_enters;
@@ -2029,7 +2029,7 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
         }
         break;
     case LeaveNotify:
-        /*ignore leaves when we're already in the window */
+        /* ignore leaves when we're already in the window */
         if (ev->xcrossing.detail == NotifyInferior)
             break;
 
This page took 0.021526 seconds and 4 git commands to generate.