summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-08-09 02:05:17 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-03 17:02:24 +0200
commitbb54ea6404268552017f1a9f2008e6b136c009c9 (patch)
treeeb1be419e0c06d4c15cd3d105aee4a68cc6fdbfa
parenta28d6f64de8577dcdc2de20ac69d54289122c241 (diff)
Fix wx_to_std -> std_to_wx reversal.
-rw-r--r--src/tools/dcpomatic_editor.cc2
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())));
}
}