]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFlex.cpp
fix http://bugzilla.lyx.org/show_bug.cgi?id=4998
[lyx.git] / src / insets / InsetFlex.cpp
index 132ebd30660bf5bc0c9b129ac31995639b49896b..b768a4b344ecd88a498745911465bc6fb3ee5c45 100644 (file)
 
 #include "Buffer.h"
 #include "BufferParams.h"
-#include "BufferView.h"
-#include "DispatchResult.h"
-#include "FuncRequest.h"
-#include "FuncStatus.h"
-#include "Cursor.h"
-#include "support/gettext.h"
 #include "LaTeXFeatures.h"
 #include "Lexer.h"
-#include "Text.h"
 #include "MetricsInfo.h"
 #include "Paragraph.h"
 #include "paragraph_funcs.h"
 #include "sgml.h"
+#include "Text.h"
 
-#include "support/convert.h"
+#include "support/gettext.h"
 
-#include <sstream>
+#include <ostream>
 
 using namespace std;
 
@@ -117,7 +111,7 @@ int InsetFlex::docbook(odocstream & os, OutputParams const & runparams) const
 
 void InsetFlex::textString(odocstream & os) const
 {
-       os << paragraphs().begin()->asString(true);
+       os << paragraphs().begin()->asString(AS_STR_LABEL | AS_STR_INSETS);
 }