diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-09 10:19:32 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-09 10:19:32 +0800 |
commit | 2fb9565ed501cc57da1ca42ff540fd123c00ba48 (patch) | |
tree | 43474d7309026a8391235e56d7d8a5b1271583cf /widgets/table/e-table-memory-store.h | |
parent | 977c6e8ee8f337fb273d5fafaa5dc3dc217d6321 (diff) | |
download | gsoc2013-evolution-2fb9565ed501cc57da1ca42ff540fd123c00ba48.tar.gz gsoc2013-evolution-2fb9565ed501cc57da1ca42ff540fd123c00ba48.tar.zst gsoc2013-evolution-2fb9565ed501cc57da1ca42ff540fd123c00ba48.zip |
correct the GET_CLASS macro.
2002-11-08 Chris Toshok <toshok@ximian.com>
* e-table-memory-store.h: correct the GET_CLASS macro.
* e-table-one.h: same.
* e-table-sorted.h: same.
* e-table-subset.h: same.
* e-tree-sorted-variable.h: same.
* e-tree-table-adapter.h: same.
svn path=/trunk/; revision=18680
Diffstat (limited to 'widgets/table/e-table-memory-store.h')
-rw-r--r-- | widgets/table/e-table-memory-store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-memory-store.h b/widgets/table/e-table-memory-store.h index c4d312288b..54306da236 100644 --- a/widgets/table/e-table-memory-store.h +++ b/widgets/table/e-table-memory-store.h @@ -34,7 +34,7 @@ G_BEGIN_DECLS #define E_TABLE_MEMORY_STORE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_TABLE_MEMORY_STORE_TYPE, ETableMemoryStoreClass)) #define E_IS_TABLE_MEMORY_STORE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TABLE_MEMORY_STORE_TYPE)) #define E_IS_TABLE_MEMORY_STORE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TABLE_MEMORY_STORE_TYPE)) -#define E_TABLE_MEMORY_STORE_GET_CLASS(o) (G_TYPE_CHECK_CLASS_CAST((o), E_TABLE_MEMORY_STORE_TYPE, ETableMemoryStoreClass)) +#define E_TABLE_MEMORY_STORE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TABLE_MEMORY_STORE_TYPE, ETableMemoryStoreClass)) typedef enum { E_TABLE_MEMORY_STORE_COLUMN_TYPE_TERMINATOR, |