]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / Thesaurus.C
index b8e8a7459437a530e17dedf4f6a2b216e4ebac06..6013a96007da3692fb2e7e709791d31efc712b77 100644 (file)
@@ -1,9 +1,11 @@
 /**
  * \file Thesaurus.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
@@ -13,7 +15,7 @@
 #ifdef HAVE_LIBAIKSAURUS
 
 #include <algorithm>
+
 using std::sort;
 
 Thesaurus::Thesaurus()
@@ -36,14 +38,14 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text)
                return meanings;
 
        // weird api, but ...
+
        int prev_meaning = -1;
        int cur_meaning;
        string meaning;
 
-       // correct, returns "" at the end 
+       // correct, returns "" at the end
        string ret = aik_->next(cur_meaning);
+
        while (!ret.empty()) {
                if (cur_meaning != prev_meaning) {
                        meaning = ret;
@@ -52,9 +54,9 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text)
                } else {
                        if (ret != text) {
                                meanings[meaning].push_back(ret);
-                       } 
+                       }
                }
+
                ret = aik_->next(cur_meaning);
        }
 
@@ -62,7 +64,7 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text)
                it != meanings.end(); ++it) {
                        sort(it->second.begin(), it->second.end());
        }
+
        return meanings;
 }
 
@@ -71,13 +73,13 @@ Thesaurus::Meanings Thesaurus::lookup(string const & text)
 Thesaurus::Thesaurus()
 {
 }
+
+
 Thesaurus::~Thesaurus()
 {
 }
 
+
 Thesaurus::Meanings Thesaurus::lookup(string const &)
 {
        return Meanings();
@@ -86,4 +88,4 @@ Thesaurus::Meanings Thesaurus::lookup(string const &)
 #endif // HAVE_LIBAIKSAURUS
 
 // Global instance
-Thesaurus thesaurus; 
+Thesaurus thesaurus;