]> git.lyx.org Git - features.git/blobdiff - src/frontends/controllers/ControlPrefs.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / frontends / controllers / ControlPrefs.C
index 12f6b7e07fcbef013ab929bea86810baa8aa01b9..8236af8c56296f46e25455b2c7bb7efea89db7b9 100644 (file)
 #include "support/globbing.h"
 #include "support/path_defines.h"
 
-#include "support/std_sstream.h"
-
-using lyx::support::AddName;
-using lyx::support::FileFilterList;
-using lyx::support::system_lyxdir;
-using lyx::support::user_lyxdir;
+#include <sstream>
 
 using std::ostringstream;
 using std::pair;
@@ -39,6 +34,16 @@ using std::vector;
 
 extern BufferList bufferlist;
 
+namespace lyx {
+
+using support::AddName;
+using support::FileFilterList;
+using support::system_lyxdir;
+using support::user_lyxdir;
+
+namespace frontend {
+
+
 ControlPrefs::ControlPrefs(Dialog & parent)
        : Dialog::Controller(parent),
          redraw_gui_(false),
@@ -171,3 +176,6 @@ string const ControlPrefs::browsedir(string const & path,
 {
        return browseDir(path, title);
 }
+
+} // namespace frontend
+} // namespace lyx