diff options
author | Michael Meeks <michael@ximian.com> | 2001-02-23 08:53:41 +0800 |
---|---|---|
committer | Michael Meeks <michael@src.gnome.org> | 2001-02-23 08:53:41 +0800 |
commit | f581cae993b563b395a12afda0c270faa83e551a (patch) | |
tree | af73bf505f5230a6029517d3f8ca1b2fe93a692e /shell/importer | |
parent | 5c9c2f33b943c9996eac380d5534b80ce5402360 (diff) | |
download | gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.gz gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.bz2 gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.lz gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.xz gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.zst gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.zip |
add include. (show_import_wizard): update signature to that of a verb.
2001-02-21 Michael Meeks <michael@ximian.com>
* importer/importer.c: add include.
(show_import_wizard): update signature to that of a verb.
* evolution-shell-component.c (corba_class_init): move into
(class_init): here & upd.
(evolution_shell_component_construct): upd.
(create_servant): kill.
(E_MAKE_TYPE) -> E_MAKE_X_TYPE.
svn path=/trunk/; revision=8359
Diffstat (limited to 'shell/importer')
-rw-r--r-- | shell/importer/importer.c | 5 | ||||
-rw-r--r-- | shell/importer/importer.h | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shell/importer/importer.c b/shell/importer/importer.c index b664be7379..5286a1b04d 100644 --- a/shell/importer/importer.c +++ b/shell/importer/importer.c @@ -33,6 +33,7 @@ #include <glade/glade.h> #include <gtkhtml/gtkhtml.h> +#include <gal/widgets/e-gui-utils.h> #include <e-util/e-html-utils.h> #include <gal/widgets/e-gui-utils.h> @@ -574,7 +575,9 @@ druid_finish_button_change (GnomeDruid *druid) } void -show_import_wizard (void) +show_import_wizard (BonoboUIComponent *component, + gpointer user_data, + const char *cname) { ImportData *data = g_new0 (ImportData, 1); GnomeDruidPageStart *start; diff --git a/shell/importer/importer.h b/shell/importer/importer.h index ed457b9e15..644ff62866 100644 --- a/shell/importer/importer.h +++ b/shell/importer/importer.h @@ -21,9 +21,13 @@ * Author: Iain Holmes <iain@helixcode.com> */ +#include <bonobo/bonobo-ui-component.h> + #ifndef __IMPORTER_H__ #define __IMPORTER_H__ -void show_import_wizard (void); +void show_import_wizard (BonoboUIComponent *component, + gpointer user_data, + const char *cname); #endif |