]> git.lyx.org Git - features.git/blobdiff - src/frontends/controllers/ControlAboutlyx.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / frontends / controllers / ControlAboutlyx.C
index 179f12c647657e4e1e0589e3ca03c556cc9738a4..6591b6f7488061f231dedea8bb4c63760c649dd1 100644 (file)
 
 #include <config.h>
 
-
 #include "ControlAboutlyx.h"
 #include "gettext.h"
 #include "version.h"
-#include "support/std_sstream.h"
 
 #include "support/filetools.h" // FileSearch
 #include "support/path_defines.h"
 
 #include <fstream>
-
-using namespace lyx::support;
+#include <sstream>
 
 using std::ostream;
+using std::ostringstream;
+using std::string;
+
+
+namespace lyx {
+
+using support::FileSearch;
+using support::MakeDisplayPath;
+using support::system_lyxdir;
+using support::user_lyxdir;
+
+namespace frontend {
 
 
 ControlAboutlyx::ControlAboutlyx(Dialog & parent)
@@ -86,5 +95,8 @@ string const ControlAboutlyx::getVersion() const
           << _("User directory: ")
           << MakeDisplayPath(user_lyxdir());
 
-       return STRCONV(ss.str());
+       return ss.str();
 }
+
+} // namespace frontend
+} // namespace lyx