]> git.lyx.org Git - lyx.git/blobdiff - src/chset.h
more keyboard/keysym changes
[lyx.git] / src / chset.h
index adce167ab17c80b576e6a531bc69d6211d2d46ef..73d49c84494ad3eb602805afdac6e0612d4b11ca 100644 (file)
@@ -9,9 +9,6 @@
 #include <map>
 #include <utility>
 
-using std::map;
-using std::pair;
-
 #include "LString.h"
 
 ///
@@ -22,12 +19,12 @@ public:
        ///
        string const & getName() const;
        ///
-       pair<bool, int> encodeString(string &) const;
+       std::pair<bool, int> encodeString(string const &) const;
 private:
        ///
        string name_;
        ///
-       typedef map<string, unsigned char> Cdef;
+       typedef std::map<string, unsigned char> Cdef;
        ///
        Cdef map_;
 };