diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-03-18 17:38:38 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-03-18 17:38:38 +1100 |
| commit | bac6aef730e569c6b4bcda7026bf1c1db3e827b6 (patch) | |
| tree | 898ef25cd1964752c397cb752866b9527c1f9c30 /cocoa | |
| parent | 30e8720a235014e96125f9142e5c0a7e628526ce (diff) | |
| download | scintilla-mirror-bac6aef730e569c6b4bcda7026bf1c1db3e827b6.tar.gz | |
ListBox options API. ListOptions is currently empty but may contain list item
colours in the future.
Diffstat (limited to 'cocoa')
| -rw-r--r-- | cocoa/PlatCocoa.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 8e4323dca..d01c73da6 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1680,6 +1680,7 @@ public: delegate = lbDelegate; } void SetList(const char *list, char separator, char typesep) override; + void SetOptions(ListOptions options_) override; // To clean up when closed void ReleaseViews(); @@ -1866,6 +1867,9 @@ void ListBoxImpl::SetList(const char *list, char separator, char typesep) { [table reloadData]; } +void ListBoxImpl::SetOptions(ListOptions) { +} + int ListBoxImpl::Length() { return ld.Length(); } |
