]> git.lyx.org Git - features.git/commitdiff
Add dummy implementation for Messages::getIfFound (used when ENABLE_NLS is false)
authorStephan Witt <switt@lyx.org>
Sat, 27 Oct 2018 14:12:02 +0000 (16:12 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 12:39:50 +0000 (14:39 +0200)
src/support/Messages.cpp

index c87b6b976da36d3795f59390d64c687459448d2c..57c18d522e2afadf45539aa1fdb53df43409857a 100644 (file)
@@ -388,6 +388,11 @@ bool Messages::available(string const & /* c */)
        return false;
 }
 
+docstring const Messages::getIfFound(string const & m) const
+{
+       return docstring();
+}
+
 } // namespace lyx
 
 #endif