mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
gcc fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27582 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
40f5f4e12f
commit
2ba7bb0660
@ -110,7 +110,7 @@ Thesaurus::Meanings Thesaurus::lookup(docstring const & t, docstring const &)
|
||||
bool Thesaurus::thesaurusAvailable(docstring const & lang) const
|
||||
{
|
||||
// we support English only
|
||||
return (prefixIs(lang, "en_"));
|
||||
return prefixIs(lang, "en_");
|
||||
}
|
||||
|
||||
#endif // HAVE_LIBAIKSAURUS
|
||||
@ -266,15 +266,6 @@ Thesaurus::Meanings Thesaurus::lookup(docstring const & t, docstring const & lan
|
||||
|
||||
#else
|
||||
|
||||
Thesaurus::Thesaurus()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Thesaurus::~Thesaurus()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Thesaurus::Meanings Thesaurus::lookup(docstring const &, docstring const &)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user