aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-07-24 15:29:48 +1000
committernyamatongwe <devnull@localhost>2012-07-24 15:29:48 +1000
commit6728875a9748d11ca2fb92ad36a2e640b03aed38 (patch)
tree2a8bc6dbfd6213e0f292744e1cc52675ef4303fe /src/AutoComplete.cxx
parent28a6b6543584a15ce128408ed523b88c8b588394 (diff)
downloadscintilla-mirror-6728875a9748d11ca2fb92ad36a2e640b03aed38.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';