Blame SOURCES/vinagre-3.8.2-error-dialog-title.patch

0fc5e1
From e15757679fadf405b67d66fcfb094c9fc970de8e Mon Sep 17 00:00:00 2001
0fc5e1
From: Marek Kasik <mkasik@redhat.com>
0fc5e1
Date: Wed, 3 Jul 2013 16:57:28 +0200
0fc5e1
Subject: [PATCH] Show correct title in error dialog
0fc5e1
0fc5e1
Fix a check for null.
0fc5e1
0fc5e1
https://bugzilla.gnome.org/show_bug.cgi?id=703551
0fc5e1
---
0fc5e1
 vinagre/vinagre-utils.vala | 2 +-
0fc5e1
 1 file changed, 1 insertion(+), 1 deletion(-)
0fc5e1
0fc5e1
diff --git a/vinagre/vinagre-utils.vala b/vinagre/vinagre-utils.vala
0fc5e1
index b37c31c..dd6163a 100644
0fc5e1
--- a/vinagre/vinagre-utils.vala
0fc5e1
+++ b/vinagre/vinagre-utils.vala
0fc5e1
@@ -36,7 +36,7 @@ namespace Vinagre.Utils {
0fc5e1
     public void show_error_dialog (string? title,
0fc5e1
                                    string? message,
0fc5e1
                                    Window? parent) {
0fc5e1
-        if (title != null)
0fc5e1
+        if (title == null)
0fc5e1
             title = _("An error occurred");
0fc5e1
 
0fc5e1
         var dialog = new MessageDialog (parent,
0fc5e1
-- 
0fc5e1
2.1.0
0fc5e1