]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.C
Get rid of lyxstring, remove usage of STRCONV.
[lyx.git] / src / paragraph.C
index 6ab5f5d49ec5d18e136ff98fc80a55b7407da5ee..730b7d0159785ab38a5dd73d88407faae3e7740b 100644 (file)
 #include "support/textutils.h"
 #include "support/std_sstream.h"
 
+using lyx::pos_type;
 
-using namespace lyx::support;
+using lyx::support::contains;
+using lyx::support::subst;
 
-using std::ostream;
-using std::ostringstream;
 using std::endl;
 
-using lyx::pos_type;
+using std::ostream;
+using std::ostringstream;
 
 
 Paragraph::Paragraph()
@@ -1159,7 +1160,7 @@ string const Paragraph::asString(Buffer const & buffer,
                        getInset(i)->ascii(buffer, os);
        }
 
-       return STRCONV(os.str());
+       return os.str();
 }