From b9670d72090b1b77306c79ee040527e0bd2e60b3 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 14 Feb 2008 03:49:12 +0000 Subject: [PATCH] Fix previous commit. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22990 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetFlex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetFlex.cpp b/src/insets/InsetFlex.cpp index 8fec65bca9..bb59337a16 100644 --- a/src/insets/InsetFlex.cpp +++ b/src/insets/InsetFlex.cpp @@ -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); }