From 80a672aa76c64c58f5a7571879b83e1e44cd2db6 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 21 Nov 2002 12:35:51 +0000 Subject: Patch from Biswa to add icons to autocompletion lists. --- win32/PlatWin.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'win32') 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(s)); unsigned int len = static_cast(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) { } -- cgit v1.2.3