diff options
author | Radek Doulik <rodo@helixcode.com> | 2000-11-16 02:47:33 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2000-11-16 02:47:33 +0800 |
commit | c9cba32d9ad9eb717ec135a49dc9fee4d703293a (patch) | |
tree | 2467a2eab029c33b1f32d0106ae8b8488eacf959 /composer/listener.h | |
parent | 20b14e0bb55cc3da1bf8dd669fb0bf78b59f355b (diff) | |
download | gsoc2013-evolution-c9cba32d9ad9eb717ec135a49dc9fee4d703293a.tar.gz gsoc2013-evolution-c9cba32d9ad9eb717ec135a49dc9fee4d703293a.tar.zst gsoc2013-evolution-c9cba32d9ad9eb717ec135a49dc9fee4d703293a.zip |
updates for HTMLEditor API changes
2000-11-15 Radek Doulik <rodo@helixcode.com>
* updates for HTMLEditor API changes
* e-msg-composer.c: added #include <libgnomevfs/gnome-vfs.h>
svn path=/trunk/; revision=6582
Diffstat (limited to 'composer/listener.h')
-rw-r--r-- | composer/listener.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/composer/listener.h b/composer/listener.h index e2815a3221..284924ffc6 100644 --- a/composer/listener.h +++ b/composer/listener.h @@ -30,11 +30,11 @@ BEGIN_GNOME_DECLS -#define HTML_EDITOR_LISTENER_TYPE (html_editor_listener_get_type ()) -#define HTML_EDITOR_LISTENER(o) (GTK_CHECK_CAST ((o), HTML_EDITOR_LISTENER_TYPE, HTMLEditorListener)) -#define HTML_EDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_CAST((k), HTML_EDITOR_LISTENER_TYPE, HTMLEditorListenerClass)) -#define IS_HTML_EDITOR_LISTENER(o) (GTK_CHECK_TYPE ((o), HTML_EDITOR_LISTENER_TYPE)) -#define IS_HTML_EDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), HTML_EDITOR_LISTENER_TYPE)) +#define HTMLEDITOR_LISTENER_TYPE (htmleditor_listener_get_type ()) +#define HTMLEDITOR_LISTENER(o) (GTK_CHECK_CAST ((o), HTMLEDITOR_LISTENER_TYPE, HTMLEditorListener)) +#define HTMLEDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_CAST((k), HTMLEDITOR_LISTENER_TYPE, HTMLEditorListenerClass)) +#define IS_HTMLEDITOR_LISTENER(o) (GTK_CHECK_TYPE ((o), HTMLEDITOR_LISTENER_TYPE)) +#define IS_HTMLEDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), HTMLEDITOR_LISTENER_TYPE)) typedef struct { BonoboObject parent; @@ -45,11 +45,11 @@ typedef struct { BonoboObjectClass parent_class; } HTMLEditorListenerClass; -GtkType html_editor_listener_get_type (void); -HTMLEditorListener *html_editor_listener_construct (HTMLEditorListener *listener, - HTMLEditor_Listener corba_listener); -HTMLEditorListener *html_editor_listener_new (EMsgComposer *composer); -POA_HTMLEditor_Listener__epv *html_editor_listener_get_epv (void); +GtkType htmleditor_listener_get_type (void); +HTMLEditorListener *htmleditor_listener_construct (HTMLEditorListener *listener, + GNOME_HTMLEditor_Listener corba_listener); +HTMLEditorListener *htmleditor_listener_new (EMsgComposer *composer); +POA_GNOME_HTMLEditor_Listener__epv *htmleditor_listener_get_epv (void); END_GNOME_DECLS |