Fix bug #8349: Cannot compile 2.0.x: unresolved external symbol

correct Messages class implementation for non-NLS
This commit is contained in:
Stephan Witt 2012-09-23 15:07:41 +02:00 committed by Jean-Marc Lasgouttes
parent a602f21dc4
commit 8169347ada

View 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;
}