]> git.lyx.org Git - features.git/commitdiff
Remove const qualifier from bool return type.
authorAngus Leeming <leeming@lyx.org>
Thu, 24 Jan 2002 15:49:53 +0000 (15:49 +0000)
committerAngus Leeming <leeming@lyx.org>
Thu, 24 Jan 2002 15:49:53 +0000 (15:49 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3431 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlInclude.C
src/frontends/controllers/ControlInclude.h

index f105fbea137084a2fe1dccddac46225d281b4b0b..eae869b5c296b40ee6998e3a6a3e0bd1cd0a24d1 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-24  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * ControlInclude.[Ch] (fileExists): remove const type qualifier from
+       bool return type.
+
 2002-01-20  Herbert Voss  <voss@perce.de>
 
        * ControlInclude.[Ch]: better control of unexistings files
index ea92ebed1c93c1ba8c33eb77921b41ad42b79b47..cd326cba9e2400cb9e00af3ffc7d9c212dfff3cc 100644 (file)
@@ -83,7 +83,7 @@ void ControlInclude::load(string const & file)
 }
 
 
-bool const ControlInclude::fileExists(string const & file)
+bool ControlInclude::fileExists(string const & file)
 {
     string const fileWithAbsPath = MakeAbsPath(file, OnlyPath(params().masterFilename_)); 
     if (IsFileReadable(fileWithAbsPath))
index 566f35f4cdbe8f4fb43471de7fb78aa3ba1ee531..1fbac04c2c26ceffb80cb60ad0a03e63042e77d4 100644 (file)
@@ -44,7 +44,7 @@ public:
        void load(string const & file); 
 
        /// test if file exist
-       bool const fileExists(string const & file); 
+       bool fileExists(string const & file); 
 
 private:
        /// Dispatch the changed parameters to the kernel.