]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
Andres fixes to sstrem problems
[lyx.git] / src / lyxrc.h
index fed78555dc6685617919023d4f38bad7b69e1204..ede04f705552e83bab5df1e93f89372d91dbd4ea 100644 (file)
@@ -21,9 +21,6 @@
 #include "ToolbarDefaults.h"
 #include "bufferparams.h"
 
-using std::ostream;
-using std::map;
-
 /// This contains the runtime configuration of LyX
 class LyXRC {
 public:
@@ -37,7 +34,7 @@ public:
        ///
         void print() const;
        ///
-       void output(ostream & os) const;
+       void output(std::ostream & os) const;
        /// Is a bind file already (or currently) read?
        bool hasBindFile;
        ///
@@ -222,7 +219,7 @@ public:
        ///
        bool rtl_support;
        ///
-       string auto_mathmode;
+       bool auto_number;
        ///
        bool show_banner;
        /// Do we have to use a GUI?
@@ -240,7 +237,7 @@ public:
        ///
        string docbook_to_pdf_command;
        ///
-       typedef map<string, int> Bindings;
+       typedef std::map<string, int> Bindings;
        ///
        Bindings bindings;
 private: