No need for default argument

This commit is contained in:
Juergen Spitzmueller 2015-04-02 16:32:04 +02:00
parent 953e56492a
commit 5aee9e6d63
8 changed files with 8 additions and 8 deletions

View File

@ -35,7 +35,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
//@}
};

View File

@ -38,7 +38,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
//@}
///
bool const math_mode_;

View File

@ -34,7 +34,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
bool initialiseParams(std::string const & data);
//@}
};

View File

@ -35,7 +35,7 @@ private:
FuncCode creationCode() const { return LFUN_INFO_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
//@}
};

View File

@ -34,7 +34,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
bool initialiseParams(std::string const &);
//@}
};

View File

@ -33,7 +33,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
//@}
};

View File

@ -35,7 +35,7 @@ private:
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
bool initialiseParams(std::string const &);
//@}
};

View File

@ -40,7 +40,7 @@ private:
void paramsToDialog(Inset const *);
void paramsToDialog(InsetCommandParams const &);
docstring dialogToParams() const;
bool checkWidgets(bool readonly = false) const;
bool checkWidgets(bool readonly) const;
//@}
};