diff options
author | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-07-30 23:49:14 +0800 |
---|---|---|
committer | Sam Spilsbury <sam.spilsbury@canonical.com> | 2011-07-30 23:49:14 +0800 |
commit | 0590eb09e4a09d50218781fd2c4dab7721af3f71 (patch) | |
tree | 079e294092505f97ed13e59dec2cd48fb4859653 | |
parent | 8841d4aefe8edd332760f6354bd887a52b07ba8d (diff) | |
download | workarounds-0590eb09e4a09d50218781fd2c4dab7721af3f71.tar.gz workarounds-0590eb09e4a09d50218781fd2c4dab7721af3f71.tar.bz2 |
Fix typo
-rw-r--r-- | src/workarounds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/workarounds.cpp b/src/workarounds.cpp index 86b5001..52abf44 100644 --- a/src/workarounds.cpp +++ b/src/workarounds.cpp @@ -711,7 +711,7 @@ WorkaroundsWindow::getFixedWindowType () newWmType = window->wmType (); - if (!XGetClassHint (screen->dpy (), window->id (), &classHint) != Success) + if (XGetClassHint (screen->dpy (), window->id (), &classHint) != Success) return newWmType; if (classHint.res_name) |