Allow customisation of error report email address.
[dcpomatic.git] / src / tools / dcpomatic_editor.cc
index fc04ce01788e441b14888f6915b86b86f545f5d3..47c7bac14d844771060cc746d04be99799ed6e0e 100644 (file)
@@ -527,21 +527,23 @@ private:
                        error_dialog (
                                0,
                                wxString::Format (
-                                       _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
-                                       std_to_wx (e.what()),
-                                       std_to_wx (e.file().string().c_str ())
+                                       _("An exception occurred: %s (%s)\n\n%s"),
+                                       std_to_wx(e.what()),
+                                       std_to_wx(e.file().string().c_str()),
+                                       wx::report_problem()
                                        )
                                );
                } catch (exception& e) {
                        error_dialog (
                                0,
                                wxString::Format (
-                                       _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
-                                       std_to_wx (e.what ())
+                                       _("An exception occurred: %s\n\n%s"),
+                                       std_to_wx(e.what()),
+                                       wx::report_problem()
                                        )
                                );
                } catch (...) {
-                       error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
+                       error_dialog(nullptr, _("An unknown exception occurred.") + "  " + wx::report_problem());
                }
        }