]> git.lyx.org Git - features.git/commitdiff
correct Messages class implementation for non-NLS
authorStephan Witt <switt@lyx.org>
Sun, 23 Sep 2012 13:07:41 +0000 (15:07 +0200)
committerStephan Witt <switt@lyx.org>
Sun, 23 Sep 2012 14:06:56 +0000 (16:06 +0200)
src/support/Messages.cpp

index a1df9803259f71aa30fb57784802d2a712d3fe30..5eee6b7f6d5aa20d29b6d255c6b3adb208ce8cd3 100644 (file)
@@ -234,9 +234,14 @@ docstring const Messages::get(string const & m) const
        return trans;
 }
 
+std::string Messages::language() const
+    {
+        return string();
+    }
 
-bool Messages::available() const
+bool Messages::available(string const & c)
 {
+       (void)c;
        return false;
 }