]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt2/QAbout.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / frontends / qt2 / QAbout.C
index a336c620ad933baf083b2533ed5d67dba4017539..fe9c83febdd46bb5a834c171fea5db34e87e55e3 100644 (file)
@@ -5,35 +5,42 @@
  *
  * \author Kalle Dalheimer
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
+#include "QAbout.h"
+#include "QAboutDialog.h"
+#include "Qt2BC.h"
+#include "qt_helpers.h"
+
+#include "controllers/ButtonController.h"
+#include "controllers/ControlAboutlyx.h"
 
 #include "support/lstrings.h"
-#include "Lsstream.h"
-#include "debug.h"
-#include "qt_helpers.h"
-#include "LyXView.h"
-#include "ButtonController.h"
-#include "ControlAboutlyx.h"
+
+#include <sstream>
 
 #include <qlabel.h>
 #include <qpushbutton.h>
 #include <qtextview.h>
 
-#include "QAboutDialog.h"
-#include "Qt2BC.h"
-#include "QAbout.h"
+using lyx::support::prefixIs;
 
 using std::getline;
 
-typedef QController<ControlAboutlyx, QView<QAboutDialog> > base_class;
+using std::istringstream;
+using std::ostringstream;
+using std::string;
 
+namespace lyx {
+namespace frontend {
+
+typedef QController<ControlAboutlyx, QView<QAboutDialog> > base_class;
 
 QAbout::QAbout(Dialog & parent)
-       : base_class(parent, qt_("About LyX"))
+       : base_class(parent, _("About LyX"))
 {
 }
 
@@ -109,3 +116,6 @@ void QAbout::build_dialog()
        bcview().setCancel(dialog_->closePB);
        bc().refresh();
 }
+
+} // namespace frontend
+} // namespace lyx