From 650f35c1f360df45ad72c3b36b3aba417acede17 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Sat, 19 Mar 2011 18:59:22 +0100 Subject: [PATCH] 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 --- js/misc/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/misc/util.js b/js/misc/util.js index 1112bef21..e22811716 100644 --- a/js/misc/util.js +++ b/js/misc/util.js @@ -104,7 +104,7 @@ function trySpawnCommandLine(command_line) { function _handleSpawnError(command, err) { let title = _("Execution of '%s' failed:").format(command); - Main.notifyProblem(title, err.message); + Main.notifyError(title, err.message); } // killall: