correct Messages class implementation for non-NLS

This commit is contained in:
Stephan Witt 2012-09-23 15:07:41 +02:00
parent 404ef2467c
commit 5a9aa21350

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