summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2009-03-26 16:07:21 -0400
committerDavid Zeuthen <davidz@redhat.com>2009-03-28 13:11:47 -0400
commit1045655aadd8afedf203d6f8ecad5b1b3af34577 (patch)
tree83a6c04b76cc09891f463b20e773fc361c37442b
parentbc56c4ab346148123eb86f6d7b48f6474df7f4d5 (diff)
downloadgnome-disk-utility-1045655aadd8afedf203d6f8ecad5b1b3af34577.tar.gz
gnome-disk-utility-1045655aadd8afedf203d6f8ecad5b1b3af34577.tar.xz
gnome-disk-utility-1045655aadd8afedf203d6f8ecad5b1b3af34577.zip
don't show dbus error names
Don't show dbus error names in error dialogs. The user is already frightened enough... http://bugzilla.gnome.org/show_bug.cgi?id=575710 Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--src/gdu/gdu-error.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gdu/gdu-error.c b/src/gdu/gdu-error.c
index f0388fc..860f9a1 100644
--- a/src/gdu/gdu-error.c
+++ b/src/gdu/gdu-error.c
@@ -120,11 +120,6 @@ _gdu_error_fixup (GError *error)
if (matched)
error->domain = GDU_ERROR;
-
- /* either way, prepend the D-Bus exception name to the message */
- s = g_strdup_printf ("%s: %s", name, error->message);
- g_free (error->message);
- error->message = s;
}
/**