Remove const qualifier from bool return type.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3431 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-01-24 15:49:53 +00:00
parent 8b6f9e2c33
commit 8b3b64780f
3 changed files with 7 additions and 2 deletions

View 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

View 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))

View 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.