]> git.lyx.org Git - features.git/commitdiff
gcc fix
authorPavel Sanda <sanda@lyx.org>
Sun, 16 Nov 2008 20:00:28 +0000 (20:00 +0000)
committerPavel Sanda <sanda@lyx.org>
Sun, 16 Nov 2008 20:00:28 +0000 (20:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27582 a592a061-630c-0410-9148-cb99ea01b6c8

src/Thesaurus.cpp

index e7bee50aa4b1d236ca0f104239eaa91eb9d52348..7fd57d20c1e1a3df5114c2076c2f039a09091954 100644 (file)
@@ -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 &)
 {