all repos — openbox @ 21349b6046d21f7af959fb286790c977f4eead50

openbox fork - make it a bit more like ryudo

Convert two // to /*
Mikael Magnusson mikachu@gmail.com
commit

21349b6046d21f7af959fb286790c977f4eead50

parent

1b73a296464546f7dc58f2a753d13042a94337b0

2 files changed, 7 insertions(+), 7 deletions(-)

jump to
M openbox/actions/resizerelative.copenbox/actions/resizerelative.c

@@ -87,9 +87,9 @@ top = top < 0 ? -c->size_inc.height : c->size_inc.height;

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;
M openbox/event.copenbox/event.c

@@ -2004,9 +2004,9 @@ ObMenuEntryFrame *e;

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 @@ menu_frame_select(e->frame, e, FALSE);

} 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;