From: Mikael Magnusson Date: Thu, 14 Jul 2005 13:23:05 +0000 (+0000) Subject: c++ comments X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=6ec1881579c8b4499399ed25026f1e5376d0c04b;p=chaz%2Fopenbox c++ comments --- diff --git a/openbox/client.c b/openbox/client.c index 2285bed8..59622c3d 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3008,10 +3008,11 @@ void client_set_undecorated(ObClient *self, gboolean undecorated) if (self->undecorated != undecorated) { self->undecorated = undecorated; client_setup_decor_and_functions(self); - // Make sure the client knows it might have moved. Maybe there is a - // better way of doing this so only one client_configure is sent, but - // since 125 of these are sent per second when moving the window (with - // user = FALSE) i doubt it matters much. + /* Make sure the client knows it might have moved. Maybe there is a + * better way of doing this so only one client_configure is sent, but + * since 125 of these are sent per second when moving the window (with + * user = FALSE) i doubt it matters much. + */ client_configure(self, OB_CORNER_TOPLEFT, self->area.x, self->area.y, self->area.width, self->area.height, TRUE, TRUE); client_change_state(self); /* reflect this in the state hints */ diff --git a/openbox/frame.c b/openbox/frame.c index 99fa3161..fcad427b 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -578,35 +578,35 @@ static void layout_title(ObFrame *self) ob_rr_theme->padding + 1); break; case 'D': - if (d) { *lc = ' '; break; } /* rm duplicates */ + if (d) { *lc = ' '; break; } d = TRUE; self->label_width -= (ob_rr_theme->button_size + ob_rr_theme->padding + 1); break; case 'S': - if (s) { *lc = ' '; break; } /* rm duplicates */ + if (s) { *lc = ' '; break; } s = TRUE; self->label_width -= (ob_rr_theme->button_size + ob_rr_theme->padding + 1); break; case 'I': - if (i) { *lc = ' '; break; } /* rm duplicates */ + if (i) { *lc = ' '; break; } i = TRUE; self->label_width -= (ob_rr_theme->button_size + ob_rr_theme->padding + 1); break; case 'L': - if (l) { *lc = ' '; break; } /* rm duplicates */ + if (l) { *lc = ' '; break; } l = TRUE; break; case 'M': - if (m) { *lc = ' '; break; } /* rm duplicates */ + if (m) { *lc = ' '; break; } m = TRUE; self->label_width -= (ob_rr_theme->button_size + ob_rr_theme->padding + 1); break; case 'C': - if (c) { *lc = ' '; break; } /* rm duplicates */ + if (c) { *lc = ' '; break; } c = TRUE; self->label_width -= (ob_rr_theme->button_size + ob_rr_theme->padding + 1);