From 329ed48ccdb37835b9e1fb2c53a2fb86e2eede53 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 25 May 2025 14:21:37 +0200 Subject: Put wx::report_problem() in a dcpomatic namespace. --- src/tools/dcpomatic.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/dcpomatic.cc') diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 7ecc5e453..b3b3d1c87 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1825,7 +1825,7 @@ private: _("An exception occurred: %s (%s)\n\n%s"), std_to_wx(e.what()), std_to_wx(e.file().string().c_str()), - wx::report_problem() + dcpomatic::wx::report_problem() ) ); } catch (boost::filesystem::filesystem_error& e) { @@ -1836,7 +1836,7 @@ private: std_to_wx(e.what()), std_to_wx(e.path1().string()), std_to_wx(e.path2().string()), - wx::report_problem() + dcpomatic::wx::report_problem() ) ); } catch (exception& e) { @@ -1845,11 +1845,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())); } } -- cgit v1.2.3