]> git.lyx.org Git - features.git/commitdiff
Fix bug #8349: Cannot compile 2.0.x: unresolved external symbol
authorStephan Witt <switt@lyx.org>
Sun, 23 Sep 2012 13:07:41 +0000 (15:07 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 24 Sep 2012 14:11:45 +0000 (16:11 +0200)
correct Messages class implementation for non-NLS

src/support/Messages.cpp

index 085cf9ed8da7fddb77d694a3fb6a4965e680592b..e8d93d3a8130e5c405f1cf20ca59fc8c4187a3b0 100644 (file)
@@ -237,9 +237,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;
 }