Util: use the right function name when reporting errors.
It's Main.notifyError, not Main.notifyProblem. https://bugzilla.gnome.org/show_bug.cgi?id=645248
This commit is contained in:
parent
14e65168c9
commit
650f35c1f3
@ -104,7 +104,7 @@ function trySpawnCommandLine(command_line) {
|
|||||||
|
|
||||||
function _handleSpawnError(command, err) {
|
function _handleSpawnError(command, err) {
|
||||||
let title = _("Execution of '%s' failed:").format(command);
|
let title = _("Execution of '%s' failed:").format(command);
|
||||||
Main.notifyProblem(title, err.message);
|
Main.notifyError(title, err.message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// killall:
|
// killall:
|
||||||
|
Loading…
Reference in New Issue
Block a user