summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/dictionary.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2015-08-23 09:22:40 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2015-08-23 09:22:40 +0000
commit2036ef157e7743223a4f52f791cc821d2d45695d (patch)
tree6b98fb7ec243a1de22f6d11742ad16d11e2114a1 /plugins/SpellChecker/src/dictionary.cpp
parentc7ffc608a5346c75e372d7b1a0de3983fdb41cd5 (diff)
SpellChecker:
- Minor fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@15016 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/dictionary.cpp')
-rw-r--r--plugins/SpellChecker/src/dictionary.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/SpellChecker/src/dictionary.cpp b/plugins/SpellChecker/src/dictionary.cpp
index 7c074fd159..bbdb192c89 100644
--- a/plugins/SpellChecker/src/dictionary.cpp
+++ b/plugins/SpellChecker/src/dictionary.cpp
@@ -370,19 +370,17 @@ protected:
FILE *file = _tfopen(filename, _T("rb"));
if (file != NULL) {
char tmp[1024];
- char c;
- int pos = 0;
+ int c, pos = 0;
while ((c = fgetc(file)) != EOF) {
if (c == '\n' || c == '\r' || pos >= _countof(tmp) - 1) {
if (pos > 0) {
tmp[pos] = '\0';
hunspell->add(tmp);
+ pos = 0;
}
-
- pos = 0;
}
else {
- tmp[pos] = c;
+ tmp[pos] = (char)c;
pos++;
}
}