rearranged bit field initialization, so valgrind has not to guess

svn path=/trunk/kdebase/kwin/; revision=143392
remotes/origin/Plasma/5.0
Stephan Kulow 24 years ago
parent 1b6bb5f2f2
commit c19eca1a32
  1. 18
      client.cpp

@ -511,20 +511,28 @@ Client::Client( Workspace *ws, WId w, QWidget *parent, const char *name, WFlags
moveResizeMode = FALSE; moveResizeMode = FALSE;
setMouseTracking( TRUE ); setMouseTracking( TRUE );
active = FALSE;
shaded = FALSE; shaded = FALSE;
hover_unshade = FALSE; hover_unshade = FALSE;
transient_for = None; active = FALSE;
transient_for_defined = FALSE;
is_shape = FALSE;
is_sticky = FALSE; is_sticky = FALSE;
stays_on_top = FALSE; stays_on_top = FALSE;
is_shape = FALSE;
may_move = TRUE; may_move = TRUE;
is_fullscreen = FALSE; is_fullscreen = FALSE;
skip_taskbar = FALSE; skip_taskbar = FALSE;
Pdeletewindow = 0;
Ptakefocus = 0;
Pcontexthelp = 0;
input = FALSE;
store_settings = FALSE;
skip_pager = FALSE; skip_pager = FALSE;
transient_for = None;
transient_for_defined = FALSE;
max_mode = MaximizeRestore; max_mode = MaximizeRestore;
store_settings = FALSE;
cmap = None; cmap = None;

Loading…
Cancel
Save