summaryrefslogtreecommitdiff
path: root/xfconf/xfconf-cache.c
diff options
context:
space:
mode:
authorOlivier Duchateau <duchateau.olivier@gmail.com>2019-02-15 20:47:43 +0100
committerRomain Bouvier <skunnyk@alteroot.org>2019-06-24 09:56:13 +0200
commit8d4284058bd7acd951f112ac6d3fd42c02eefe7f (patch)
treedaed096405db84394df019ce4279beca311853c5 /xfconf/xfconf-cache.c
parentb4bed38222aa0c389b6ded430bcdfade27e77f73 (diff)
downloadxfconf-8d4284058bd7acd951f112ac6d3fd42c02eefe7f.tar.gz
Add support for GObject introspection and vala
- Fix bug #15135
Diffstat (limited to 'xfconf/xfconf-cache.c')
-rw-r--r--xfconf/xfconf-cache.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/xfconf/xfconf-cache.c b/xfconf/xfconf-cache.c
index d74f05e..ca012f6 100644
--- a/xfconf/xfconf-cache.c
+++ b/xfconf/xfconf-cache.c
@@ -144,7 +144,16 @@ xfconf_cache_item_free(XfconfCacheItem *item)
/******************* XfconfCacheOldItem *******************/
-
+/**
+ * XfconfCacheOldItem:
+ * @property:
+ * @item: a #XfconfCacheItem object
+ * @cancellable:
+ * @pending_calls_count:
+ * @variant: Used in xfconf_cache_old_item_end_call to end an already
+ * started call
+ * @cache: Pointer to the cache object
+ */
typedef struct
{
gchar *property;
@@ -154,14 +163,8 @@ typedef struct
gint pending_calls_count;
- /**
- * Variant to be send on the wire
- * Used in xfconf_cache_old_item_end_call
- * to end an already started call
- **/
GVariant *variant;
- /* Pointer to the cache object */
XfconfCache *cache;
} XfconfCacheOldItem;