]> git.lyx.org Git - lyx.git/blobdiff - src/FuncStatus.cpp
Unneeded include
[lyx.git] / src / FuncStatus.cpp
index 17e59e677ded3666dfb11a794b1d020f6305f2b4..d56df61aa01e5130523e42623cd9af3349f75b38 100644 (file)
@@ -41,7 +41,7 @@ void FuncStatus::unknown(bool b)
        if (b)
                v_ |= UNKNOWN;
        else
-               v_ &= !UNKNOWN;
+               v_ &= ~UNKNOWN;
 }
 
 
@@ -52,10 +52,10 @@ bool FuncStatus::unknown() const
 }
 
 
-void FuncStatus::enabled(bool b)
+void FuncStatus::setEnabled(bool b)
 {
        if (b)
-               v_ &= !DISABLED;
+               v_ &= ~DISABLED;
        else
                v_ |= DISABLED;
 }