aboutsummaryrefslogtreecommitdiffstats
path: root/composer/listener.h
diff options
context:
space:
mode:
authorRadek Doulik <rodo@helixcode.com>2000-12-08 03:04:19 +0800
committerRadek Doulik <rodo@src.gnome.org>2000-12-08 03:04:19 +0800
commitffcec7f3d556a32b191891a21de72476d157cbf9 (patch)
tree3d02a22a797e73da787929c35d3d658f5f39c5bf /composer/listener.h
parenta22a4c17a5796ed4aa4249f6154b7d3321bd6709 (diff)
downloadgsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar.gz
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar.bz2
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar.lz
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar.xz
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.tar.zst
gsoc2013-evolution-ffcec7f3d556a32b191891a21de72476d157cbf9.zip
added warnings (prepare_engine): updated to
2000-12-07 Radek Doulik <rodo@helixcode.com> * e-msg-composer.c (prepare_engine): added warnings (prepare_engine): updated to IDL:GNOME/GtkHTML/Editor/Engine:1.0 * Makefile.am: renamed HTMLEditor* to Editor*, added Editor-common.c: $(HTML_EDITOR_GENERATED) rule svn path=/trunk/; revision=6838
Diffstat (limited to 'composer/listener.h')
-rw-r--r--composer/listener.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/composer/listener.h b/composer/listener.h
index 284924ffc6..0c50ef2111 100644
--- a/composer/listener.h
+++ b/composer/listener.h
@@ -25,31 +25,31 @@
#include <libgnome/gnome-defs.h>
#include <bonobo/bonobo-object.h>
-#include "HTMLEditor.h"
+#include "Editor.h"
#include "e-msg-composer.h"
BEGIN_GNOME_DECLS
-#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))
+#define EDITOR_LISTENER_TYPE (listener_get_type ())
+#define EDITOR_LISTENER(o) (GTK_CHECK_CAST ((o), EDITOR_LISTENER_TYPE, EditorListener))
+#define EDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_CAST((k), EDITOR_LISTENER_TYPE, EditorListenerClass))
+#define IS_EDITOR_LISTENER(o) (GTK_CHECK_TYPE ((o), EDITOR_LISTENER_TYPE))
+#define IS_EDITOR_LISTENER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), EDITOR_LISTENER_TYPE))
typedef struct {
BonoboObject parent;
EMsgComposer *composer;
-} HTMLEditorListener;
+} EditorListener;
typedef struct {
BonoboObjectClass parent_class;
-} HTMLEditorListenerClass;
+} EditorListenerClass;
-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);
+GtkType listener_get_type (void);
+EditorListener *listener_construct (EditorListener *listener,
+ GNOME_GtkHTML_Editor_Listener corba_listener);
+EditorListener *listener_new (EMsgComposer *composer);
+POA_GNOME_GtkHTML_Editor_Listener__epv *listener_get_epv (void);
END_GNOME_DECLS