aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/cache/camel-cache-store.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-09-06 05:18:00 +0800
committerDan Winship <danw@src.gnome.org>2000-09-06 05:18:00 +0800
commitdc2a0341af6c842fb7ca675417bf721cd705239f (patch)
tree7122178557a4ff09c108add23b37cdc630a9a6eb /camel/providers/cache/camel-cache-store.h
parent69b79e75f6f32d1b61ac38ab0a797eac92f391fc (diff)
downloadgsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar.gz
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar.bz2
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar.lz
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar.xz
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.tar.zst
gsoc2013-evolution-dc2a0341af6c842fb7ca675417bf721cd705239f.zip
Update for CamelObject and some other changes
svn path=/trunk/; revision=5210
Diffstat (limited to 'camel/providers/cache/camel-cache-store.h')
-rw-r--r--camel/providers/cache/camel-cache-store.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/camel/providers/cache/camel-cache-store.h b/camel/providers/cache/camel-cache-store.h
index d85f759640..f02c987c47 100644
--- a/camel/providers/cache/camel-cache-store.h
+++ b/camel/providers/cache/camel-cache-store.h
@@ -34,9 +34,9 @@ extern "C" {
#include <camel/camel-store.h>
#define CAMEL_CACHE_STORE_TYPE (camel_cache_store_get_type ())
-#define CAMEL_CACHE_STORE(obj) (GTK_CHECK_CAST((obj), CAMEL_CACHE_STORE_TYPE, CamelCacheStore))
-#define CAMEL_CACHE_STORE_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), CAMEL_CACHE_STORE_TYPE, CamelCacheStoreClass))
-#define IS_CAMEL_CACHE_STORE(o) (GTK_CHECK_TYPE((o), CAMEL_CACHE_STORE_TYPE))
+#define CAMEL_CACHE_STORE(obj) (CAMEL_CHECK_CAST((obj), CAMEL_CACHE_STORE_TYPE, CamelCacheStore))
+#define CAMEL_CACHE_STORE_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_CACHE_STORE_TYPE, CamelCacheStoreClass))
+#define IS_CAMEL_CACHE_STORE(o) (CAMEL_CHECK_TYPE((o), CAMEL_CACHE_STORE_TYPE))
typedef struct {
CamelStore parent_object;
@@ -55,8 +55,8 @@ typedef struct {
/* support functions */
void camel_cache_store_sync (CamelCacheStore *store);
-/* Standard Gtk function */
-GtkType camel_cache_store_get_type (void);
+/* Standard Camel function */
+CamelType camel_cache_store_get_type (void);
#ifdef __cplusplus
}