]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
fix compilation bug
[lyx.git] / src / WordLangTuple.h
index 90fd01918f3ad72d65aa69c8dc1a25c5b24d67ad..7fd64f4af6c8dcba0bcd81510ac0ab316a467cc3 100644 (file)
@@ -8,9 +8,9 @@
 
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
-#include "LString.h" 
+
+#include "LString.h"
+
 /**
  * A word and its given language code ("en_US").
  * This is used for spellchecking.
 class WordLangTuple {
 public:
        WordLangTuple() {}
+
        WordLangTuple(string const & w, string const & c)
                : word_(w), code_(c)
        {}
+
        /// return the word
        string const & word() const {
                return word_;
@@ -39,5 +39,5 @@ private:
        /// language code of word
        string code_;
 };
+
 #endif // WORD_LANG_TUPLE_H