X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsgml.cpp;h=6ac6c8653b95af30c777cae4ed13e23c4bf6ac9d;hb=1acedf11da79f509da706bc8d6d2f491c9676087;hp=928e0eb09ee8fd1b621039fc1a65299f4d8d77b1;hpb=688c186614a50a82b97733cb401e046ea8207352;p=lyx.git diff --git a/src/sgml.cpp b/src/sgml.cpp index 928e0eb09e..6ac6c8653b 100644 --- a/src/sgml.cpp +++ b/src/sgml.cpp @@ -20,6 +20,7 @@ #include "OutputParams.h" #include "Paragraph.h" #include "Text.h" +#include "TextClass.h" #include "support/convert.h" #include "support/docstream.h" @@ -29,15 +30,11 @@ #include #include +using namespace std; +using namespace lyx::support; namespace lyx { -using support::subst; - -using std::map; -using std::ostream; -using std::ostringstream; -using std::string; docstring sgml::escapeChar(char_type c) { @@ -212,7 +209,7 @@ void sgml::openTag(Buffer const & buf, odocstream & os, string id = par.getID(buf, runparams); string attribute; - if(!id.empty()) { + if (!id.empty()) { if (param.find('#') != string::npos) { string::size_type pos = param.find("id=<"); string::size_type end = param.find(">"); @@ -223,7 +220,7 @@ void sgml::openTag(Buffer const & buf, odocstream & os, } else { if (param.find('#') != string::npos) { // FIXME UNICODE - if(!style->counter.empty()) + if (!style->counter.empty()) counters.step(style->counter); else counters.step(from_ascii(name));