summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2013-08-11 02:03:23 +0200
committerMikael Magnusson <mikachu@gmail.com>2013-08-11 02:03:23 +0200
commit21349b6046d21f7af959fb286790c977f4eead50 (patch)
treeddcc82e87fca44c7b25319bb3820422edc2fd779 /openbox/actions
parent1b73a296464546f7dc58f2a753d13042a94337b0 (diff)
Convert two // to /*
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/resizerelative.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/actions/resizerelative.c b/openbox/actions/resizerelative.c
index a4739104..74a3bd74 100644
--- a/openbox/actions/resizerelative.c
+++ b/openbox/actions/resizerelative.c
@@ -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;