diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-10-01 14:54:13 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-10-01 14:55:05 +0200 |
commit | a8a812997f654b47cde547cbf3d97684cd06a9d3 (patch) | |
tree | 78cbad7530d94a646bc96007f2c93f9fb60ed7f6 /include | |
parent | 0cc41a033f74891ac9b47f0d1c0b291f8341a2a1 (diff) |
tdf#92341 Make Autocorrect entry actually work
Change-Id: I83e028428933e2153b639ca6b34fd69db88fb53f
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/editstat.hxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/editeng/editstat.hxx b/include/editeng/editstat.hxx index 46ddd44ad8df..3ec7c39d57a2 100644 --- a/include/editeng/editstat.hxx +++ b/include/editeng/editstat.hxx @@ -136,11 +136,12 @@ public: enum class SpellCallbackCommand { - IGNOREWORD = 0x0001, - STARTSPELLDLG = 0x0002, - ADDTODICTIONARY = 0x0003, - WORDLANGUAGE = 0x0004, - PARALANGUAGE = 0x0005, + IGNOREWORD = 0x0001, + STARTSPELLDLG = 0x0002, + ADDTODICTIONARY = 0x0003, + WORDLANGUAGE = 0x0004, + PARALANGUAGE = 0x0005, + AUTOCORRECT_OPTIONS = 0x0006, }; struct SpellCallbackInfo |