variables.diff

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2157 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-06-29 06:40:08 +00:00
parent f87b93ec65
commit 65c6e5bed3
3 changed files with 42 additions and 38 deletions

View File

@ -1,3 +1,7 @@
2001-06-29 John Levon <moz@compsoc.man.ac.uk>
* Variables.[Ch]: fix indentation, rename set to isSet
2001-06-29 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxfunc.C (Dispatch): fix typo

View File

@ -38,7 +38,7 @@ string const Variables::get(string const & var) const
}
bool Variables::set(string const & var) const
bool Variables::isSet(string const & var) const
{
Vars::const_iterator cit = vars_.find(var);
return (cit != vars_.end());

View File

@ -28,7 +28,7 @@ public:
///
string const get(string const &) const;
///
bool set(string const & var) const;
bool isSet(string const & var) const;
///
string const expand(string const &) const;
private: