]> git.lyx.org Git - lyx.git/blobdiff - src/intl.h
fix compiler warnings about unused parameter
[lyx.git] / src / intl.h
index fe7ae6a89dd1ec13a02f7f027783861bfa80dc68..07de268332e114544d1e580e919e05e6202a2feb 100644 (file)
@@ -18,6 +18,9 @@
 #include "trans_mgr.h"
 
 
+namespace lyx {
+
+
 /**
  * This class is used for managing keymaps
  * for composing characters in LyX.
@@ -33,19 +36,19 @@ public:
        Intl();
 
        /// {en/dis}able the keymap
-       void KeyMapOn(bool on);
+       void keyMapOn(bool on);
 
        /// set the primary language keymap
-       void KeyMapPrim();
+       void keyMapPrim();
 
        /// set the secondary language keymap
-       void KeyMapSec();
+       void keyMapSec();
 
        /// turn on/off key mappings, status in keymapon
-       void ToggleKeyMap();
+       void toggleKeyMap();
 
        /// initialize key mapper
-       void InitKeyMapper(bool on);
+       void initKeyMapper(bool on);
 
        // Get the Translation Manager
        TransManager & getTransManager();
@@ -71,4 +74,7 @@ TransManager & Intl::getTransManager()
        return trans;
 }
 
+
+} // namespace lyx
+
 #endif /* INTL_H */