]> git.lyx.org Git - lyx.git/blobdiff - src/FuncStatus.h
small stuff, whitespace & consistent naming
[lyx.git] / src / FuncStatus.h
index 8375c3401e99c5b89670ceeb98754d37987f1530..80613c26478479fb97e232b07ea26a6ffe0a0011 100644 (file)
@@ -37,23 +37,23 @@ public:
        ///
        FuncStatus();
        //
-       FuncStatus & clear ();
+       void clear();
        ///
-       void operator |= (FuncStatus const & f);
+       void operator|=(FuncStatus const & f);
        ///
-       FuncStatus & unknown(bool b);
+       void unknown(bool b);
        ///
        bool unknown() const;
 
        ///
-       FuncStatus & disabled (bool b);
+       void disabled(bool b);
        ///
-       bool disabled () const;
+       bool disabled() const;
 
        ///
-       void setOnOff (bool b);
+       void setOnOff(bool b);
        ///
-       bool onoff (bool b) const;
+       bool onoff(bool b) const;
 };
 
 #endif