X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncStatus.C;h=1998db67d1d0a9f81311606931c334c578d9137e;hb=5c3d9a254640468e40b2d30467a26222c91d856d;hp=9c83203b66e4192a2cc9fd5952ac5890478d3f99;hpb=de039bb341afcfe9929b5fd6833308d509feae47;p=lyx.git diff --git a/src/FuncStatus.C b/src/FuncStatus.C index 9c83203b66..1998db67d1 100644 --- a/src/FuncStatus.C +++ b/src/FuncStatus.C @@ -17,56 +17,56 @@ FuncStatus::FuncStatus() : v_(OK) } -FuncStatus & FuncStatus::clear () +void FuncStatus::clear() { v_ = OK; - return *this; } -void FuncStatus::operator |= (FuncStatus const & f) + +void FuncStatus::operator|=(FuncStatus const & f) { v_ |= f.v_; } -FuncStatus & FuncStatus::unknown (bool b) + +void FuncStatus::unknown(bool b) { if (b) v_ |= UNKNOWN; else v_ &= !UNKNOWN; - return *this; } -bool FuncStatus::unknown () const + +bool FuncStatus::unknown() const { return (v_ & UNKNOWN); } -FuncStatus & FuncStatus::disabled (bool b) +void FuncStatus::disabled(bool b) { if (b) v_ |= DISABLED; else v_ &= !DISABLED; - return *this; } -bool FuncStatus::disabled () const +bool FuncStatus::disabled() const { return (v_ & DISABLED); } -void FuncStatus::setOnOff (bool b) +void FuncStatus::setOnOff(bool b) { v_ |= (b ? ON : OFF); } -bool FuncStatus::onoff (bool b) const +bool FuncStatus::onoff(bool b) const { if (b) return (v_ & ON);