summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_verifier.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/dcpomatic_verifier.cc')
-rw-r--r--src/tools/dcpomatic_verifier.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/dcpomatic_verifier.cc b/src/tools/dcpomatic_verifier.cc
index b40d508c4..238efe552 100644
--- a/src/tools/dcpomatic_verifier.cc
+++ b/src/tools/dcpomatic_verifier.cc
@@ -360,7 +360,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) {
@@ -371,7 +371,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) {
@@ -380,11 +380,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()));
}
}