]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
remove noload/don't typeset
[lyx.git] / src / WordLangTuple.h
index d58ca4a7eb854b7ad20d2bb81ffc4ef545d39fc1..90fd01918f3ad72d65aa69c8dc1a25c5b24d67ad 100644 (file)
@@ -9,7 +9,6 @@
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
  
-#include <config.h>
 #include "LString.h" 
  
 /**
  */
 class WordLangTuple {
 public:
-       WordLangTuple() {};
+       WordLangTuple() {}
  
        WordLangTuple(string const & w, string const & c)
-               : word_(w), code_(c) {}
+               : word_(w), code_(c)
+       {}
  
        /// return the word
-       string const word() const {
+       string const word() const {
                return word_;
        }
 
        /// return its language code
-       string const lang_code() const {
+       string const lang_code() const {
                return code_;
        }