diff options
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) { } |