diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-17 07:49:31 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-17 07:49:31 +0800 |
commit | d8e4ebebc320c72ae93c88dc43d8ae220a94331d (patch) | |
tree | ee09f7d541eed7543ec2fb0edbc54c8723c15176 /widgets/text/e-completion-view.h | |
parent | 09e8fe231719c87f7b1b4a22cc7015773bb1be19 (diff) | |
download | gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar.gz gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar.bz2 gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar.lz gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar.xz gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.tar.zst gsoc2013-evolution-d8e4ebebc320c72ae93c88dc43d8ae220a94331d.zip |
Lots of GObject work.
2002-11-16 Chris Toshok <toshok@ximian.com>
* gal/e-text/e-completion-test.c: Lots of GObject work.
* gal/e-text/e-completion-view.[ch]: same.
* gal/e-text/e-completion.[ch]: same.
* gal/e-text/e-entry.[ch]: same.
* gal/e-text/e-table-text-model.[ch]: same.
* gal/e-text/e-text-model-uri.[ch]: same.
* gal/e-text/e-text-model.[ch]: same.
* gal/e-text/e-text-test.c: same.
* gal/e-text/e-text.[ch]: same.
svn path=/trunk/; revision=18800
Diffstat (limited to 'widgets/text/e-completion-view.h')
-rw-r--r-- | widgets/text/e-completion-view.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/text/e-completion-view.h b/widgets/text/e-completion-view.h index f869b92725..9aa3860ebd 100644 --- a/widgets/text/e-completion-view.h +++ b/widgets/text/e-completion-view.h @@ -32,10 +32,10 @@ G_BEGIN_DECLS #define E_COMPLETION_VIEW_TYPE (e_completion_view_get_type ()) -#define E_COMPLETION_VIEW(o) (GTK_CHECK_CAST ((o), E_COMPLETION_VIEW_TYPE, ECompletionView)) -#define E_COMPLETION_VIEW_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), E_COMPLETION_VIEW_TYPE, ECompletionViewClass)) -#define E_IS_COMPLETION_VIEW(o) (GTK_CHECK_TYPE ((o), E_COMPLETION_VIEW_TYPE)) -#define E_IS_COMPLETION_VIEW_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_COMPLETION_VIEW_TYPE)) +#define E_COMPLETION_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_COMPLETION_VIEW_TYPE, ECompletionView)) +#define E_COMPLETION_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), E_COMPLETION_VIEW_TYPE, ECompletionViewClass)) +#define E_IS_COMPLETION_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_COMPLETION_VIEW_TYPE)) +#define E_IS_COMPLETION_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_COMPLETION_VIEW_TYPE)) typedef struct _ECompletionView ECompletionView; typedef struct _ECompletionViewClass ECompletionViewClass; |