diff options
author | Scott Moreau <oreaus@gmail.com> | 2011-05-17 18:47:41 -0600 |
---|---|---|
committer | Scott Moreau <oreaus@gmail.com> | 2011-05-17 18:47:41 -0600 |
commit | 568d8861f665d480109fec457c0d57227937ee07 (patch) | |
tree | e2a8b9b36dfd6d1dcfa3e968f10e2b9cb7190346 | |
parent | c10f970038ea684635c062754400b3de3498c6e6 (diff) | |
download | neg-568d8861f665d480109fec457c0d57227937ee07.tar.gz neg-568d8861f665d480109fec457c0d57227937ee07.tar.bz2 |
Fix typo.
-rw-r--r-- | src/neg.cpp | 2 | ||||
-rw-r--r-- | src/neg.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/neg.cpp b/src/neg.cpp index 835073a..76799fd 100644 --- a/src/neg.cpp +++ b/src/neg.cpp @@ -57,7 +57,7 @@ NegScreen::toggle (CompAction *action, { foreach (CompWindow *w, screen->windows ()) NegWindow::get (w)->toggle (); - isNeg =!isNeg; + isNeg = !isNeg; } else { @@ -57,6 +57,9 @@ class NegScreen : CompOption::Vector opt, bool all); + void + ToggleScreen (); + int getFragmentFunction (GLTexture *texture, bool alpha); |