aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-client-cache.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-02-28 00:43:46 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-02-28 00:45:47 +0800
commite8b4f7de7fea934ecd9d108515d38703aa9b8506 (patch)
treedefa72ecee43f03db254f507ed35dc364153e0f9 /e-util/e-client-cache.h
parentbc27cacec39ef6043b0109b8d7ba81605cea5714 (diff)
downloadgsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar.gz
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar.bz2
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar.lz
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar.xz
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.tar.zst
gsoc2013-evolution-e8b4f7de7fea934ecd9d108515d38703aa9b8506.zip
EClientCache cleanups.
Diffstat (limited to 'e-util/e-client-cache.h')
-rw-r--r--e-util/e-client-cache.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/e-util/e-client-cache.h b/e-util/e-client-cache.h
index 9c92b09e18..5e6a8241ef 100644
--- a/e-util/e-client-cache.h
+++ b/e-util/e-client-cache.h
@@ -66,43 +66,43 @@ struct _EClientCacheClass {
GObjectClass parent_class;
/* Signals */
- void (*backend_died) (EClientCache *cache,
+ void (*backend_died) (EClientCache *client_cache,
EClient *client,
EAlert *alert);
- void (*backend_error) (EClientCache *cache,
+ void (*backend_error) (EClientCache *client_cache,
EClient *client,
EAlert *alert);
- void (*client_notify) (EClientCache *cache,
+ void (*client_notify) (EClientCache *client_cache,
EClient *client,
GParamSpec *pspec);
- void (*client_created) (EClientCache *cache,
+ void (*client_created) (EClientCache *client_cache,
EClient *client);
};
GType e_client_cache_get_type (void) G_GNUC_CONST;
EClientCache * e_client_cache_new (ESourceRegistry *registry);
ESourceRegistry *
- e_client_cache_ref_registry (EClientCache *cache);
-EClient * e_client_cache_get_client_sync (EClientCache *cache,
+ e_client_cache_ref_registry (EClientCache *client_cache);
+EClient * e_client_cache_get_client_sync (EClientCache *client_cache,
ESource *source,
const gchar *extension_name,
GCancellable *cancellable,
GError **error);
-void e_client_cache_get_client (EClientCache *cache,
+void e_client_cache_get_client (EClientCache *client_cache,
ESource *source,
const gchar *extension_name,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
EClient * e_client_cache_get_client_finish
- (EClientCache *cache,
+ (EClientCache *client_cache,
GAsyncResult *result,
GError **error);
EClient * e_client_cache_ref_cached_client
- (EClientCache *cache,
+ (EClientCache *client_cache,
ESource *source,
const gchar *extension_name);
-gboolean e_client_cache_is_backend_dead (EClientCache *cache,
+gboolean e_client_cache_is_backend_dead (EClientCache *client_cache,
ESource *source,
const gchar *extension_name);