]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt2/QPrefs.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / frontends / qt2 / QPrefs.C
index bce074e77f9eb81e0447544caffcb40546398d66..47fbdd6e8d1a1ece66a7ea6a79aea4b9bd62bf18 100644 (file)
 
 #include <config.h>
 
-#include "debug.h"
-#include "support/lstrings.h"
-#include "support/tostr.h"
-#include "support/std_sstream.h"
-#include <iomanip>
-
-#include "ControlPrefs.h"
+#include "QPrefs.h"
 #include "QPrefsDialog.h"
+
+#include "lcolorcache.h"
+#include "Qt2BC.h"
+#include "qt_helpers.h"
+
 #include "ui/QPrefAsciiModule.h"
 #include "ui/QPrefDateModule.h"
 #include "ui/QPrefKeyboardModule.h"
 #include "ui/QPrefPrinterModule.h"
 #include "ui/QPrefUIModule.h"
 #include "ui/QPrefIdentityModule.h"
-#include "lyx_gui.h"
-#include "QPrefs.h"
-#include "Qt2BC.h"
+
+#include "debug.h"
+#include "LColor.h"
 #include "lyxfont.h"
-#include "frnt_lang.h"
-#include "helper_funcs.h"
-#include "qt_helpers.h"
-#include "lcolorcache.h"
 
-#include <boost/tuple/tuple.hpp>
+#include "support/lstrings.h"
+#include "support/tostr.h"
+
+#include "controllers/ControlPrefs.h"
+#include "controllers/frnt_lang.h"
+#include "controllers/helper_funcs.h"
+
+#include "frontends/lyx_gui.h"
 
-#include <qpushbutton.h>
 #include <qcheckbox.h>
-#include <qlineedit.h>
-#include <qspinbox.h>
+#include "qcoloritem.h"
 #include <qcombobox.h>
 #include <qlabel.h>
-#include "qcoloritem.h"
+#include <qlineedit.h>
+#include <qpushbutton.h>
+#include <qspinbox.h>
 
-#include "LColor.h"
+#include <boost/tuple/tuple.hpp>
+
+#include <iomanip>
+#include <sstream>
 
 using lyx::support::compare_no_case;
 using lyx::support::strToDbl;
@@ -64,6 +69,8 @@ using std::ostringstream;
 using std::pair;
 using std::vector;
 
+namespace lyx {
+namespace frontend {
 
 typedef QController<ControlPrefs, QView<QPrefsDialog> > base_class;
 
@@ -98,11 +105,13 @@ void QPrefs::build_dialog()
 
        langmod->defaultLanguageCO->clear();
        // store the lang identifiers for later
-       vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
+       using lyx::frontend::LanguagePair;
+       vector<LanguagePair> const langs =
+               lyx::frontend::getLanguageData(false);
        lang_ = getSecond(langs);
 
-       vector<frnt::LanguagePair>::const_iterator lit  = langs.begin();
-       vector<frnt::LanguagePair>::const_iterator lend = langs.end();
+       vector<LanguagePair>::const_iterator lit  = langs.begin();
+       vector<LanguagePair>::const_iterator lend = langs.end();
        for (; lit != lend; ++lit) {
                langmod->defaultLanguageCO->insertItem(toqstr(lit->first));
        }
@@ -192,7 +201,7 @@ void QPrefs::apply()
                rc.preview = LyXRC::PREVIEW_ON;
                break;
        }
-       
+
        lyx::graphics::DisplayType dtype(lyx::graphics::ColorDisplay);
 
        switch (displaymod->displayGraphicsCO->currentItem()) {
@@ -511,7 +520,7 @@ void QPrefs::update_contents()
                displaymod->instantPreviewCO->setCurrentItem(2);
                break;
        }
-       
+
        int item = 2;
 
        switch (rc.display_graphics) {
@@ -615,3 +624,6 @@ void QPrefs::update_contents()
 
        dialog_->updateConverters();
 }
+
+} // namespace frontend
+} // namespace lyx