Default values for bool parameters make the code harder to read
In this case we always passed the parameter anyway.
This commit is contained in:
parent
cca858732a
commit
ecaaab6e90
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ public:
|
||||||
void documentSaved();
|
void documentSaved();
|
||||||
|
|
||||||
/// Notify whether we need to use the Editing cache.
|
/// Notify whether we need to use the Editing cache.
|
||||||
void setEditing(bool editing = true);
|
void setEditing(bool editing);
|
||||||
|
|
||||||
// The parameter is a message
|
// The parameter is a message
|
||||||
void saveTextFile(const std::string& text, std::string fileName);
|
void saveTextFile(const std::string& text, std::string fileName);
|
||||||
|
|
Loading…
Reference in a new issue