]> git.lyx.org Git - lyx.git/blobdiff - src/intl.C
explain why ownsClipbiard() does not work on Windows and OS X
[lyx.git] / src / intl.C
index 69166a42b62f8e9f4c986904f650e4a00c1cd10a..92a802e313ba5f9c160342203905f3a0a6a7d345 100644 (file)
@@ -18,6 +18,9 @@
 #include "lyxrc.h"
 
 
+namespace lyx {
+
+
 using std::endl;
 
 
@@ -75,13 +78,12 @@ void Intl::keyMapSec()
 
 void Intl::initKeyMapper(bool on)
 {
-       lyxerr[Debug::INIT] << "Initializing key mappings..." << endl;
+       LYXERR(Debug::INIT) << "Initializing key mappings..." << endl;
 
        if (trans.setPrimary(prim_lang) == -1)
                prim_lang.erase();
        if (trans.setSecondary(sec_lang) == -1)
                sec_lang.erase();
-       trans.setCharset(lyxrc.font_norm);
 
        if (prim_lang.empty() && sec_lang.empty())
                keymapon = false;
@@ -93,3 +95,6 @@ void Intl::initKeyMapper(bool on)
        if (keymapon)
                keyMapPrim();
 }
+
+
+} // namespace lyx