diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-18 23:42:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-18 23:42:33 +0300 |
commit | 44a8248b1b19375130144a783d1758e1f83d3c88 (patch) | |
tree | c8e134b6c1d1a7a8ae463989116a38c055af0d2b /plugins/SpellChecker/src/autoreplace.h | |
parent | 61757497a901760271660c20390fc39aa6300a42 (diff) |
SpellChecker:
- fix for a memory allocation zoo;
- code cleaning;
- version bump
Diffstat (limited to 'plugins/SpellChecker/src/autoreplace.h')
-rw-r--r-- | plugins/SpellChecker/src/autoreplace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SpellChecker/src/autoreplace.h b/plugins/SpellChecker/src/autoreplace.h index 316f015e0d..f3ce520e80 100644 --- a/plugins/SpellChecker/src/autoreplace.h +++ b/plugins/SpellChecker/src/autoreplace.h @@ -53,7 +53,7 @@ public: /// Return an auto replacement to a word or NULL if none exists.
/// You have to free the item.
- wchar_t* autoReplace(const wchar_t *word);
+ CMStringW autoReplace(const wchar_t *word);
/// Add a word to the list of auto-replaced words
void add(const wchar_t *from, const wchar_t *to, BOOL useVariables = FALSE);
|