| author | Sam Spilsbury <smspillaz@gmail.com> | 2010-03-18 14:58:56 (GMT) |
|---|---|---|
| committer | Sam Spilsbury <smspillaz@gmail.com> | 2010-03-18 14:58:56 (GMT) |
| commit | de875da99728ffb93fcd03fd3caca1a73d8098a2 (patch) (side-by-side diff) | |
| tree | 74d267ed36ebe1454cd37c8fd50aa778b4a9dd83 | |
| parent | 6c7d254d7f7b3706e9a6294a1c16c7cc9a05568f (diff) | |
| download | core-de875da99728ffb93fcd03fd3caca1a73d8098a2.tar.gz core-de875da99728ffb93fcd03fd3caca1a73d8098a2.tar.bz2 | |
Fix typo
| -rw-r--r-- | plugins/place/src/place.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/place/src/place.cpp b/plugins/place/src/place.cpp index 62acb6a..fe48599 100644 --- a/plugins/place/src/place.cpp +++ b/plugins/place/src/place.cpp @@ -593,7 +593,7 @@ PlaceWindow::doValidateResizeRequest (unsigned int &mask, /* always validate position if the application changed only its size, as it might become partially offscreen because of that */ - if (!(*mask & (CWX | CWY)) && (*mask & (CWWidth | CWHeight))) + if (!(mask & (CWX | CWY)) && (mask & (CWWidth | CWHeight))) sizeOnly = FALSE; if ((right - left) != xwc->width) |
