]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.cpp
Tooltips for collapsables and branches
[lyx.git] / src / output_plaintext.cpp
index eb11c576600a1bfa558f709c2cc7f6b79375f32e..452b4c10d834f4fc792cec6bfaa87bb53df0de27 100644 (file)
 
 #include "support/lstrings.h"
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::ascii_lowercase;
-using support::compare_ascii_no_case;
-using support::contains;
-using support::FileName;
-
-using std::endl;
-using std::ostream;
-using std::pair;
-using std::string;
-
 
 void writePlaintextFile(Buffer const & buf, FileName const & fname,
        OutputParams const & runparams)
 {
-       odocfstream ofs("UTF-8");
+       odocfstream ofs;
        if (!openFileWrite(ofs, fname))
                return;
        writePlaintextFile(buf, ofs, runparams);