summaryrefslogtreecommitdiffstats
path: root/security/seahorse/files/patch-libseahorse_seahorse-key-store.c
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-29 11:24:22 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-29 11:24:22 +0800
commitf8b641d50cefe82088fa9b68a3d4cae3ac43efee (patch)
tree22bc0e1c72ce0698dd716887f5bc206e24af467d /security/seahorse/files/patch-libseahorse_seahorse-key-store.c
parent7b8aba216e9e28e0231a6bd1c04ca78a44b8947a (diff)
downloadmarcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar.gz
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar.bz2
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar.lz
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar.xz
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.tar.zst
marcuscom-ports-f8b641d50cefe82088fa9b68a3d4cae3ac43efee.zip
Chase the libsoup shared lib version.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4654 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'security/seahorse/files/patch-libseahorse_seahorse-key-store.c')
-rw-r--r--security/seahorse/files/patch-libseahorse_seahorse-key-store.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/security/seahorse/files/patch-libseahorse_seahorse-key-store.c b/security/seahorse/files/patch-libseahorse_seahorse-key-store.c
new file mode 100644
index 000000000..fc8b7af60
--- /dev/null
+++ b/security/seahorse/files/patch-libseahorse_seahorse-key-store.c
@@ -0,0 +1,22 @@
+--- libseahorse/seahorse-key-store.c.orig Wed Dec 22 15:18:27 2004
++++ libseahorse/seahorse-key-store.c Wed Dec 22 15:19:48 2004
+@@ -184,6 +184,8 @@
+ {
+ GObject* obj = G_OBJECT_CLASS (parent_class)->constructor (type, n_props, props);
+ SeahorseKeyStore* skstore = SEAHORSE_KEY_STORE (obj);
++ guint cols;
++ GType* types;
+
+ /* init private vars */
+ skstore->priv = g_new0 (SeahorseKeyStorePriv, 1);
+@@ -191,8 +193,8 @@
+ NULL, (GDestroyNotify)seahorse_key_row_free);
+
+ /* Setup the store */
+- guint cols = SEAHORSE_KEY_STORE_GET_CLASS (skstore)->n_columns;
+- GType* types = (GType*)SEAHORSE_KEY_STORE_GET_CLASS (skstore)->col_types;
++ cols = SEAHORSE_KEY_STORE_GET_CLASS (skstore)->n_columns;
++ types = (GType*)SEAHORSE_KEY_STORE_GET_CLASS (skstore)->col_types;
+ gtk_tree_store_set_column_types (GTK_TREE_STORE (obj), cols, types);
+
+ /* Setup the sort and filter */