summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_playlist.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-25 14:21:37 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-27 09:36:37 +0200
commit329ed48ccdb37835b9e1fb2c53a2fb86e2eede53 (patch)
tree1dd97d6d120e21e4f63e9ace5985c477451add0a /src/tools/dcpomatic_playlist.cc
parentdf9b4676aba8b941f124b174393988cad21677e1 (diff)
Put wx::report_problem() in a dcpomatic namespace.
Diffstat (limited to 'src/tools/dcpomatic_playlist.cc')
-rw-r--r--src/tools/dcpomatic_playlist.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/dcpomatic_playlist.cc b/src/tools/dcpomatic_playlist.cc
index dfe578194..264afe27d 100644
--- a/src/tools/dcpomatic_playlist.cc
+++ b/src/tools/dcpomatic_playlist.cc
@@ -697,10 +697,10 @@ private:
error_dialog (
0,
wxString::Format (
- _("An exception occurred: %s (%s)\n\n%s") + wx::report_problem(),
+ _("An exception occurred: %s (%s)\n\n%s") + dcpomatic::wx::report_problem(),
std_to_wx(e.what()),
std_to_wx(e.file().string().c_str()),
- wx::report_problem()
+ dcpomatic::wx::report_problem()
)
);
} catch (exception& e) {
@@ -709,11 +709,11 @@ private:
wxString::Format(
_("An exception occurred: %s\n\n%s"),
std_to_wx(e.what()),
- wx::report_problem()
+ dcpomatic::wx::report_problem()
)
);
} catch (...) {
- error_dialog(nullptr, wxString::Format(_("An unknown exception occurred. %s"), wx::report_problem()));
+ error_dialog(nullptr, wxString::Format(_("An unknown exception occurred. %s"), dcpomatic::wx::report_problem()));
}
/* This will terminate the program */
@@ -722,7 +722,7 @@ private:
void OnUnhandledException () override
{
- error_dialog(nullptr, wxString::Format(_("An unknown exception occurred. %s"), wx::report_problem()));
+ error_dialog(nullptr, wxString::Format(_("An unknown exception occurred. %s"), dcpomatic::wx::report_problem()));
}
void idle ()