summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-08-09 20:17:26 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-03 17:02:24 +0200
commit54834e1d2c739708ce677d32a8c2a887f9cb55bf (patch)
tree6db7756d0f8deb29280701b9b27eb4a5808c7639 /src
parentbee00c5c4d015b69b770c699ff0bbcd72815fa13 (diff)
Add Choice::size().
Diffstat (limited to 'src')
-rw-r--r--src/wx/dcpomatic_choice.cc10
-rw-r--r--src/wx/dcpomatic_choice.h1
2 files changed, 11 insertions, 0 deletions
diff --git a/src/wx/dcpomatic_choice.cc b/src/wx/dcpomatic_choice.cc
index 52aaa4fc4..c458296f6 100644
--- a/src/wx/dcpomatic_choice.cc
+++ b/src/wx/dcpomatic_choice.cc
@@ -159,3 +159,13 @@ Choice::clear()
Clear();
}
+
+int
+Choice::size() const
+{
+ if (_needs_clearing) {
+ return 0;
+ }
+ return GetCount();
+}
+
diff --git a/src/wx/dcpomatic_choice.h b/src/wx/dcpomatic_choice.h
index 5417c1aa2..fde6a8cbb 100644
--- a/src/wx/dcpomatic_choice.h
+++ b/src/wx/dcpomatic_choice.h
@@ -40,6 +40,7 @@ public:
void set_entries(wxArrayString const& entries);
void clear();
+ int size() const;
void set(int index);
void set_by_data(wxString const& data);