]> git.lyx.org Git - lyx.git/blobdiff - src/FuncStatus.C
cosmetic fix
[lyx.git] / src / FuncStatus.C
index f820ce2afe0620815a8ce460bf9ff1e5c3c8d50b..f82b537379c71ac67861d7ed5f2b4c25037ff5d5 100644 (file)
@@ -1,18 +1,14 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2001 The LyX Team.
  *
  * ====================================================== */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "FuncStatus.h"
 
 FuncStatus::FuncStatus() : v_(OK)
@@ -50,7 +46,7 @@ bool FuncStatus::unknown () const
 FuncStatus & FuncStatus::disabled (bool b)
 {
        if (b)
-               v_ |= DISABLED;
+               v_ |= DISABLED;
        else
                v_ &= !DISABLED;
        return *this;
@@ -71,7 +67,7 @@ void FuncStatus::setOnOff (bool b)
 
 bool FuncStatus::onoff (bool b) const
 {
-       if (b) 
+       if (b)
                return (v_ & ON);
        else
                return (v_ & OFF);