diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-01 17:57:14 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-01 17:57:14 +0300 |
commit | 562334068a5526a92fa6f931581c4b221a70ab41 (patch) | |
tree | 93793427d1c513a8c727bf496e0d5d52d3b2e90d | |
parent | fcc6038bca76ecb2a47dcaa776293d5085cff3ea (diff) |
compilation fix
-rw-r--r-- | plugins/SpellChecker/src/spellchecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SpellChecker/src/spellchecker.cpp b/plugins/SpellChecker/src/spellchecker.cpp index 0c7fdba566..3a2eb978a2 100644 --- a/plugins/SpellChecker/src/spellchecker.cpp +++ b/plugins/SpellChecker/src/spellchecker.cpp @@ -37,6 +37,8 @@ BITMAP bmpChecked; BOOL loaded = FALSE; +static bool bComInited = false; + ///////////////////////////////////////////////////////////////////////////////////////// static int CompareDicts(const Dictionary *p1, const Dictionary *p2) @@ -205,8 +207,6 @@ static int ModulesLoaded(WPARAM, LPARAM) //////////////////////////////////////////////////////////////////////////////////////// -static bool bComInited = false; - static IconItem iconList[] = { { LPGEN("Enabled"), "spellchecker_enabled", IDI_CHECK }, |