]> git.lyx.org Git - features.git/commitdiff
Fix previous commit.
authorRichard Heck <rgheck@comcast.net>
Thu, 14 Feb 2008 03:49:12 +0000 (03:49 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 14 Feb 2008 03:49:12 +0000 (03:49 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22990 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetFlex.cpp

index 8fec65bca9360748899d717c5812342defe3a62a..bb59337a16da0e2fde4247b6ee783dc5ecccad38 100644 (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);
 }