aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2012-07-24 15:29:48 +1000
committernyamatongwe <unknown>2012-07-24 15:29:48 +1000
commitb74d888e9d72a7a61295dccfee1f07465f5be867 (patch)
treefb958dd1e96d6451555c8fdb0730ed7c2d02ca89 /src/AutoComplete.cxx
parent124855efe9f3d44625552854cf618a64613fe8c8 (diff)
downloadscintilla-mirror-b74d888e9d72a7a61295dccfee1f07465f5be867.tar.gz
Add ncurses platform. Rest of the implementation is an external project.
From Mitchell Foral.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r--src/AutoComplete.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index 82773f4db..bab123a99 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -34,7 +34,9 @@ AutoComplete::AutoComplete() :
cancelAtStartPos(true),
autoHide(true),
dropRestOfWord(false),
- ignoreCaseBehaviour(SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE) {
+ ignoreCaseBehaviour(SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE),
+ widthLBDefault(100),
+ heightLBDefault(100) {
lb = ListBox::Allocate();
stopChars[0] = '\0';
fillUpChars[0] = '\0';