mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
correct Messages class implementation for non-NLS
This commit is contained in:
parent
404ef2467c
commit
5a9aa21350
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user