Convert two // to /*
This commit is contained in:
parent
1b73a29646
commit
21349b6046
2 changed files with 7 additions and 7 deletions
|
@ -87,9 +87,9 @@ static gboolean run_func(ObActionsData *data, gpointer options)
|
||||||
if (bottom && ABS(bottom) < c->size_inc.height)
|
if (bottom && ABS(bottom) < c->size_inc.height)
|
||||||
bottom = bottom < 0 ? -c->size_inc.height : 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
|
/* 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
|
is at least as big as the size increment so the window does actually
|
||||||
// resize.
|
resize. */
|
||||||
x = c->area.x;
|
x = c->area.x;
|
||||||
y = c->area.y;
|
y = c->area.y;
|
||||||
ow = c->area.width;
|
ow = c->area.width;
|
||||||
|
|
|
@ -2004,9 +2004,9 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
|
||||||
|
|
||||||
switch (ev->type) {
|
switch (ev->type) {
|
||||||
case MotionNotify:
|
case MotionNotify:
|
||||||
// We need to catch MotionNotify in addition to EnterNotify because
|
/* We need to catch MotionNotify in addition to EnterNotify because
|
||||||
// it is possible for the menu to be opened under the mouse cursor, and
|
it is possible for the menu to be opened under the mouse cursor, and
|
||||||
// moving the mouse should select the item.
|
moving the mouse should select the item. */
|
||||||
if ((e = g_hash_table_lookup(menu_frame_map, &ev->xmotion.window))) {
|
if ((e = g_hash_table_lookup(menu_frame_map, &ev->xmotion.window))) {
|
||||||
if (e->ignore_enters)
|
if (e->ignore_enters)
|
||||||
--e->ignore_enters;
|
--e->ignore_enters;
|
||||||
|
@ -2029,7 +2029,7 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LeaveNotify:
|
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)
|
if (ev->xcrossing.detail == NotifyInferior)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue