diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-08-09 02:05:17 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-08-17 12:59:25 +0200 |
| commit | 3f3903ca3c8da8b661e8b9ebd228d957b106f8ba (patch) | |
| tree | bfcc97e96bc9e75c1078f1844094ed7758440466 /src/tools | |
| parent | 1fdf8265b7ddddbd92bc79ce0915238b0445c5d3 (diff) | |
Fix wx_to_std -> std_to_wx reversal.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_editor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_editor.cc b/src/tools/dcpomatic_editor.cc index 07e720a71..a42517ffc 100644 --- a/src/tools/dcpomatic_editor.cc +++ b/src/tools/dcpomatic_editor.cc @@ -342,7 +342,7 @@ public: _notebook->DeleteAllPages(); for (auto cpl: _dcp->cpls()) { - _notebook->AddPage(new CPLPanel(_notebook, cpl), wx_to_std(cpl->annotation_text().get_value_or(cpl->id()))); + _notebook->AddPage(new CPLPanel(_notebook, cpl), std_to_wx(cpl->annotation_text().get_value_or(cpl->id()))); } } |
