]> git.lyx.org Git - lyx.git/blobdiff - src/PersonalWordList.cpp
Do not scale statusbar icons
[lyx.git] / src / PersonalWordList.cpp
index 75dcda6aa70d8d2a786520c4fbc090e17666e23e..ca61d8a17106f5577c9d66de2308eb52b4a7355e 100644 (file)
 #include "support/filetools.h"
 #include "support/Package.h"
 #include "support/FileName.h"
-#include "support/lstrings.h"
-#include "support/os.h"
 
 #include <string>
 #include <fstream>
 
 using namespace std;
 using namespace lyx::support;
-using namespace lyx::support::os;
 
 namespace lyx {
 
@@ -54,7 +51,7 @@ void PersonalWordList::load()
        LYXERR(Debug::FILES, "load personal dictionary from: " << fn);
        ifstream ifs(fn.toFilesystemEncoding().c_str());
 
-       dirty(words_.size() > 0);
+       dirty(!words_.empty());
        words_.clear();
        string line;
        getline(ifs, line);
@@ -92,6 +89,7 @@ void PersonalWordList::save()
        LYXERR(Debug::FILES, "count of saved items: " << words_.size());
 }
 
+
 bool PersonalWordList::equalwords(docstring const & w1, docstring const & w2) const
 {
        return w1 == w2;