]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.C
hopefully fix tex2lyx linking.
[lyx.git] / src / Thesaurus.C
index e8a6385cffdd7157bfda523e46aa61cb6567c4f0..af37e4df6629fc8dcbeba25b9a61317b01adf7c5 100644 (file)
@@ -15,6 +15,9 @@
 #include <algorithm>
 #include <string>
 
+
+namespace lyx {
+
 using std::string;
 
 #ifdef HAVE_LIBAIKSAURUS
@@ -23,9 +26,8 @@ using std::sort;
 
 
 Thesaurus::Thesaurus()
-{
-       aik_ = new Aiksaurus;
-}
+       : aik_(new Aiksaurus)
+{}
 
 
 Thesaurus::~Thesaurus()
@@ -93,3 +95,6 @@ Thesaurus::Meanings Thesaurus::lookup(string const &)
 
 // Global instance
 Thesaurus thesaurus;
+
+
+} // namespace lyx