]> git.lyx.org Git - features.git/commitdiff
Compile fix for DEC cxx.
authorAngus Leeming <leeming@lyx.org>
Wed, 9 Jan 2002 14:37:55 +0000 (14:37 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 9 Jan 2002 14:37:55 +0000 (14:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3321 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/FuncStatus.C

index d0e05c2ba09758664a31cf31ad23ae6af9288cba..36313b6f5df118c255388b7aa0d02c73a200c4d3 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
+       FuncStaus::FuncStatus & FuncStaus::some_method().
+
 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
 
        * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
index b06ab524928bba6cc08f84d8926fe775a8b72bd1..f820ce2afe0620815a8ce460bf9ff1e5c3c8d50b 100644 (file)
@@ -20,7 +20,7 @@ FuncStatus::FuncStatus() : v_(OK)
 }
 
 
-FuncStatus::FuncStatus & FuncStatus::clear ()
+FuncStatus & FuncStatus::clear ()
 {
        v_ = OK;
        return *this;
@@ -31,7 +31,7 @@ void FuncStatus::operator |= (FuncStatus const & f)
        v_ |= f.v_;
 }
 
-FuncStatus::FuncStatus & FuncStatus::unknown (bool b)
+FuncStatus & FuncStatus::unknown (bool b)
 {
        if (b)
                v_ |= UNKNOWN;
@@ -47,7 +47,7 @@ bool FuncStatus::unknown () const
 }
 
 
-FuncStatus::FuncStatus & FuncStatus::disabled (bool b)
+FuncStatus & FuncStatus::disabled (bool b)
 {
        if (b)
                v_ |= DISABLED;