diff options
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/error.cpp | 4 | ||||
| -rw-r--r-- | gui/error.h | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/gui/error.cpp b/gui/error.cpp index 3332eb533a..f6da795d40 100644 --- a/gui/error.cpp +++ b/gui/error.cpp @@ -36,10 +36,10 @@ void displayErrorDialog(const char *text) {  	alert.runModal();  } -void displayErrorDialog(Common::Error error, const char *extraText) { +void displayErrorDialog(const Common::Error &error, const char *extraText) {  	Common::String errorText(extraText);  	errorText += " "; -	errorText += _(Common::errorToString(error)); +	errorText += _(error.getDesc());  	GUI::MessageDialog alert(errorText);  	alert.runModal();  } diff --git a/gui/error.h b/gui/error.h index a55f555bed..f048a0cd09 100644 --- a/gui/error.h +++ b/gui/error.h @@ -36,7 +36,7 @@ namespace GUI {   * @param error error code   * @param extraText extra text to be displayed in addition to default string description(optional)   */ -void displayErrorDialog(Common::Error error, const char *extraText = ""); +void displayErrorDialog(const Common::Error &error, const char *extraText = "");  /**   * Displays an error dialog for a given message.  | 
