mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
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:
parent
8b6f9e2c33
commit
8b3b64780f
@ -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
|
||||
|
@ -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))
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user