diff options
author | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2013-01-31 11:37:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-11 11:13:16 +0000 |
commit | 992f3ce06773cd05dbb66162f51408338d3db801 (patch) | |
tree | 3113eb5a6927facfc5d1546a568d1615c3913265 /editeng/source | |
parent | a6b1ed45fb5cf4ef192f0bb32adb8da963a51283 (diff) |
Better default values for Word completion feature
http://nabble.documentfoundation.org/Libreoffice-ux-advise-Word-completion-default-value-td4031168.html
Change-Id: Ifef07653c2155b3c26d65d41cae1164b44fbd04f
Reviewed-on: https://gerrit.libreoffice.org/1937
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/misc/swafopt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/misc/swafopt.cxx b/editeng/source/misc/swafopt.cxx index a416507e19a4..a3cba1b46b18 100644 --- a/editeng/source/misc/swafopt.cxx +++ b/editeng/source/misc/swafopt.cxx @@ -49,7 +49,7 @@ SvxSwAutoFmtFlags::SvxSwAutoFmtFlags() bWithRedlining = bAutoCmpltEndless = bAutoCmpltAppendBlanc = - bAutoCmpltShowAsTip = sal_False; + bAutoCmpltShowAsTip = sal_True; bSetBorder = bCreateTable = @@ -76,8 +76,8 @@ SvxSwAutoFmtFlags::SvxSwAutoFmtFlags() cByInputBullet = cBullet; aByInputBulletFont = aBulletFont; - nAutoCmpltWordLen = 10; - nAutoCmpltListLen = 500; + nAutoCmpltWordLen = 8; + nAutoCmpltListLen = 1000; m_pAutoCompleteList = 0; pSmartTagMgr = 0; } |