[network-manager-openvpn: 4/4] properties: fix compile error from 522190ad916



commit 738fa8edb684e0968f1d52327e978066bca82484
Author: Dan Williams <dcbw redhat com>
Date:   Thu Jan 9 16:14:00 2014 -0600

    properties: fix compile error from 522190ad916

 properties/auth-helpers.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/properties/auth-helpers.c b/properties/auth-helpers.c
index 2dcb2ea..5c4578b 100644
--- a/properties/auth-helpers.c
+++ b/properties/auth-helpers.c
@@ -188,9 +188,9 @@ tls_setup (GtkBuilder *builder,
        id3 = g_signal_connect (key, "selection-changed", G_CALLBACK (tls_cert_changed_cb), ca_chooser);
 
        /* Store handler id to be able to block the signal in tls_cert_changed_cb() */
-       g_object_set_data (ca_chooser, BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id1));
-       g_object_set_data (cert, BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id2));
-       g_object_set_data (key, BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id3));
+       g_object_set_data (G_OBJECT (ca_chooser), BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id1));
+       g_object_set_data (G_OBJECT (cert), BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id2));
+       g_object_set_data (G_OBJECT (key), BLOCK_HANDLER_ID, GSIZE_TO_POINTER (id3));
 
        /* Fill in the private key password */
        tmp = g_strdup_printf ("%s_private_key_password_entry", prefix);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]