diff options
author | nyamatongwe <unknown> | 2002-11-21 12:35:51 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-11-21 12:35:51 +0000 |
commit | 80a672aa76c64c58f5a7571879b83e1e44cd2db6 (patch) | |
tree | f3b69c94fcefff4ff2b0828a740940b9d0b96fb6 /win32/PlatWin.cxx | |
parent | 882b4355011c56f17284981bab13ed74ed395284 (diff) | |
download | scintilla-mirror-80a672aa76c64c58f5a7571879b83e1e44cd2db6.tar.gz |
Patch from Biswa to add icons to autocompletion lists.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 5113ab24c..fd8ed249b 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -826,7 +826,7 @@ void ListBox::Clear() { maxItemCharacters = 0; } -void ListBox::Append(char *s) { +void ListBox::Append(char *s, int) { Window_SendMessage(this, LB_ADDSTRING, 0, reinterpret_cast<LPARAM>(s)); unsigned int len = static_cast<unsigned int>(strlen(s)); if (maxItemCharacters < len) @@ -871,6 +871,9 @@ void ListBox::Sort() { // Windows keeps sorted so no need to sort } +void ListBox::SetTypeXpm(int, const char **) { +} + Menu::Menu() : id(0) { } |