From 8169347adafeaece14c8b463add8072c6e9a91a8 Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Sun, 23 Sep 2012 15:07:41 +0200 Subject: [PATCH] Fix bug #8349: Cannot compile 2.0.x: unresolved external symbol correct Messages class implementation for non-NLS --- src/support/Messages.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/support/Messages.cpp b/src/support/Messages.cpp index 085cf9ed8d..e8d93d3a81 100644 --- a/src/support/Messages.cpp +++ b/src/support/Messages.cpp @@ -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; } -- 2.39.5