Fix previous commit.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22990 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2008-02-14 03:49:12 +00:00
parent 3dc5bc09dd
commit b9670d7209

View File

@ -79,7 +79,7 @@ docstring const InsetFlex::editMessage() const
void InsetFlex::write(Buffer const & buf, ostream & os) const
{
os << "Flex " <<
name_.empty() ? "undefined" : name_ << "\n";
(name_.empty() ? "undefined" : name_) << "\n";
InsetCollapsable::write(buf, os);
}