]> git.lyx.org Git - lyx.git/blobdiff - src/FuncStatus.C
fix typo that put too many include paths for most people
[lyx.git] / src / FuncStatus.C
index f820ce2afe0620815a8ce460bf9ff1e5c3c8d50b..5e7133c740199fb0f6fa5ab93c0a9a7e0ca3c427 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2001 The LyX Team.
  *
  * ====================================================== */
@@ -50,7 +50,7 @@ bool FuncStatus::unknown () const
 FuncStatus & FuncStatus::disabled (bool b)
 {
        if (b)
-               v_ |= DISABLED;
+               v_ |= DISABLED;
        else
                v_ &= !DISABLED;
        return *this;
@@ -71,7 +71,7 @@ void FuncStatus::setOnOff (bool b)
 
 bool FuncStatus::onoff (bool b) const
 {
-       if (b) 
+       if (b)
                return (v_ & ON);
        else
                return (v_ & OFF);