]> git.lyx.org Git - lyx.git/blobdiff - src/WordList.cpp
Use MathML on the clipboard for formulas in HTML
[lyx.git] / src / WordList.cpp
index 191dc33b83ebc365a166ead16bd0dffa47091bde..96b7c35ea798c91a7a2726a0d28c1f61a82b694e 100644 (file)
@@ -37,12 +37,13 @@ WordList * theWordList(Language const & lang)
        if (it != theGlobalWordList.end())
                return it->second;
        else
-               theGlobalWordList[lang] = new WordList();
+               theGlobalWordList[lang] = new WordList;
        return theGlobalWordList[lang];
 }
 
 
-void WordList::cleanupWordLists() {
+void WordList::cleanupWordLists()
+{
        map<Language, WordList *>::const_iterator it = theGlobalWordList.begin();
        for (; it != theGlobalWordList.end(); ++it)
                delete it->second;