mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix bug #8349: Cannot compile 2.0.x: unresolved external symbol
correct Messages class implementation for non-NLS
This commit is contained in:
parent
a602f21dc4
commit
8169347ada
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user