]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
fix a visual cursor edge-case:
[lyx.git] / src / Thesaurus.h
index f051d102ee0737f973dbdb88275960146e630c02..e63f2935236108b73cddbdb0104e5692aa6e515c 100644 (file)
 #include <vector>
 #include <map>
 
-#ifdef HAVE_LIBMYTHES
-#include MYTHES_H_LOCATION
-#else
 #ifdef HAVE_LIBAIKSAURUS
 #include AIKSAURUS_H_LOCATION
-#endif // HAVE_LIBAIKSAURUS
-#endif // !HAVE_LIBMYTHES
+#endif
 
 namespace lyx {
 
@@ -46,13 +42,9 @@ public:
        Meanings lookup(docstring const & text);
 
 private:
-#ifdef HAVE_LIBMYTHES
-       MyThes * thes_;
-#else
 #ifdef HAVE_LIBAIKSAURUS
-       Aiksaurus * thes_;
-#endif // HAVE_LIBAIKSAURUS
-#endif // !HAVE_LIBMYTHES
+       Aiksaurus * aik_;
+#endif
 };
 
 extern Thesaurus thesaurus;