diff options
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rwxr-xr-x | gtk/PlatGTK.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 2f37cf62d..45564df78 100755 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -1232,6 +1232,7 @@ public: void ClearRegisteredImages() override; void SetDelegate(IListBoxDelegate *lbDelegate) override; void SetList(const char *listText, char separator, char typesep) override; + void SetOptions(ListOptions options_) override; }; std::unique_ptr<ListBox> ListBox::Allocate() { @@ -1878,6 +1879,9 @@ void ListBoxX::SetList(const char *listText, char separator, char typesep) { } } +void ListBoxX::SetOptions(ListOptions) { +} + Menu::Menu() noexcept : mid(nullptr) {} void Menu::CreatePopUp() { |