]> git.lyx.org Git - lyx.git/blobdiff - src/intl.h
Various small fixes. Read Changelog
[lyx.git] / src / intl.h
index 57382a5a16c13b1223539432553a582d95bd69ea..b30d41de83ed68c069776a9a436567fa9c844930 100644 (file)
@@ -28,11 +28,12 @@ class TransManager;
   classes. Probably should the gui class just have a pointer to the non
   gui class.
   */
-class Intl
-{
+class Intl {
 public:
        ///
        Intl();
+       ///
+       ~Intl();
        
        /// show key mapping dialog
        void MenuKeymap(); 
@@ -56,7 +57,7 @@ public:
        void InitKeyMapper(bool on);
 
        /// Get the Translation Manager
-       inline TransManager * getTrans();
+       TransManager * getTrans();
        ///
        bool keymapon;
        ///
@@ -69,9 +70,7 @@ private:
        ///
        void update();
        ///
-       static void LCombo(int i, void *); // callback
-       ///
-       static void LCombo2(int i, void *); // callback
+       static void LCombo(int i, void *, Combox *); // callback
        ///
        void Keymap(long code);
        ///
@@ -94,6 +93,7 @@ private:
 };
 
 
+inline
 TransManager * Intl::getTrans()
 {
        return trans;