]> git.lyx.org Git - lyx.git/blobdiff - src/Encoding.cpp
Compile fix.
[lyx.git] / src / Encoding.cpp
index 2aece9a25c3127b258855ee0fd3938d42b668ce9..0bc8b0c4cb51f4a5b8ebab50f6583b8296e0b00d 100644 (file)
@@ -344,7 +344,7 @@ void Encoding::init() const
 }
 
 
-docstring Encoding::latexChar(char_type c, bool for_mathed) const
+docstring Encoding::latexChar(char_type c, bool no_commands) const
 {
        // assure the used encoding is properly initialized
        init();
@@ -355,7 +355,7 @@ docstring Encoding::latexChar(char_type c, bool for_mathed) const
                return docstring(1, c);
        if (encodable_.find(c) != encodable_.end())
                return docstring(1, c);
-       if (for_mathed)
+       if (no_commands)
                return docstring();
 
        // c cannot (or should not) be encoded in this encoding