diff options
author | JP Rosevear <jpr@ximian.com> | 2001-06-22 10:40:59 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-06-22 10:40:59 +0800 |
commit | 825502031ff29ed6f5b94a4479ee5be4689ed924 (patch) | |
tree | f72ff32cce2951235afac51d25505690ba86bee2 /calendar/gui/main.c | |
parent | 91341a4d0163f33f1ade2fb2f189c7fa4837a700 (diff) | |
download | gsoc2013-evolution-825502031ff29ed6f5b94a4479ee5be4689ed924.tar.gz gsoc2013-evolution-825502031ff29ed6f5b94a4479ee5be4689ed924.tar.zst gsoc2013-evolution-825502031ff29ed6f5b94a4479ee5be4689ed924.zip |
update to new call
2001-06-21 JP Rosevear <jpr@ximian.com>
* gui/main.c (main): update to new call
* gui/e-itip-control.[hc]: break the widget bits out on their own
into a proper object, basic stuff seems to be working again
* gui/itip-control-factory.c: put the control specific bits here
from e-itip-control.c
* gui/itip-control-factory.h: new header
svn path=/trunk/; revision=10389
Diffstat (limited to 'calendar/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index e75819f0f0..7a21193799 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -41,7 +41,7 @@ #include "calendar-config.h" #include "component-factory.h" #include "control-factory.h" -#include "e-itip-control.h" +#include "itip-control-factory.h" #include "tasks-control-factory.h" static void @@ -77,7 +77,7 @@ main (int argc, char **argv) control_factory_init (); component_factory_init (); - e_itip_control_factory_init (); + itip_control_factory_init (); tasks_control_factory_init (); bonobo_main (); |