summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/dcpomatic_player.cc')
-rw-r--r--src/tools/dcpomatic_player.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc
index c9eb613d2..ab508f224 100644
--- a/src/tools/dcpomatic_player.cc
+++ b/src/tools/dcpomatic_player.cc
@@ -1402,7 +1402,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 (exception& e) {
@@ -1411,11 +1411,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()));
}
}