summaryrefslogtreecommitdiff
path: root/src/wx/rating_dialog.cc
AgeCommit message (Collapse)Author
2025-02-22Return std::vector instead of boost::optional from the EditableList dialog.Carl Hetherington
It's a bit clumsy, as returning more than one thing only makes sense when adding (not when editing), but allowing both optional and vector with template voodoo seems awkward (at least with C++11).
2024-09-03Remove use of wxT in favour of char_to_wx().Carl Hetherington
The wxWidgets docs advise against its use these days.
2022-04-29Fix (I think) some strange situations where ::get() on dialogsCarl Hetherington
used by EditableList would return something that wasn't a optional<> but would then get implicitly cast to one. Now we have a static_assert to check that the type is what we expect.
2022-04-22Use libdcp's warnings.hCarl Hetherington
2022-04-21Disable warnings around all wx includes.Carl Hetherington
2022-03-10Fix build with the macOS 10.8 version of wxWidgets.v2.16.7Carl Hetherington
2022-03-09Improve ratings dialog to allow only valid values (#2199).Carl Hetherington
2020-06-08Set focus on opening dialog.Carl Hetherington
2019-05-10Basics of metadata dialog - ratings.Carl Hetherington