aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/PlatGTK.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-03-18 17:38:38 +1100
committerNeil <nyamatongwe@gmail.com>2021-03-18 17:38:38 +1100
commitbac6aef730e569c6b4bcda7026bf1c1db3e827b6 (patch)
tree898ef25cd1964752c397cb752866b9527c1f9c30 /gtk/PlatGTK.cxx
parent30e8720a235014e96125f9142e5c0a7e628526ce (diff)
downloadscintilla-mirror-bac6aef730e569c6b4bcda7026bf1c1db3e827b6.tar.gz
ListBox options API. ListOptions is currently empty but may contain list item
colours in the future.
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rwxr-xr-xgtk/PlatGTK.cxx4
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() {