diff options
author | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 20:57:13 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 20:57:13 +0800 |
commit | 0a59703a630f653eb0798b126c79ea039a64c144 (patch) | |
tree | ba6e10da2946a489b5641a1bdb48c66b3af84404 | |
parent | 1ac49dfc76bee3bb1e9574a017f5f5ff0a49d70a (diff) | |
download | gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar.gz gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar.bz2 gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar.lz gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar.xz gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.tar.zst gsoc2013-evolution-0a59703a630f653eb0798b126c79ea039a64c144.zip |
Move a couple of helpers into Bonobo before more people start the re-build
treadmill.
svn path=/trunk/; revision=5426
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/folder-browser-factory.c | 17 | ||||
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-view.c | 18 |
4 files changed, 8 insertions, 35 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 2769b9b3b3..ea1650e339 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-09-14 Michael Meeks <michael@helixcode.com> + + * folder-browser-factory.c: move fn to bonobo. + 2000-09-14 Christopher James Lahey <clahey@helixcode.com> * mail-config-gui.h: Changed the include here because it caused diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c index b951267884..f9010d8370 100644 --- a/mail/folder-browser-factory.c +++ b/mail/folder-browser-factory.c @@ -117,23 +117,6 @@ BonoboUIVerb verbs [] = { BONOBO_UI_VERB_END }; -/* - * MOVEME: into bonobo - */ -static char * -bonobo_ui_xml_get_parent_path (const char *path) -{ - const char *p; - char *ret; - - if ((p = strrchr (path, '/'))) - ret = g_strndup (path, p - path); - else - ret = g_strdup (path); - - return ret; -} - static void set_pixmap (Bonobo_UIContainer container, const char *xml_path, diff --git a/shell/ChangeLog b/shell/ChangeLog index 4aaa14ff9e..385018e244 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2000-09-14 Michael Meeks <michael@helixcode.com> + + * e-shell-view.c: move fn to bonobo. + 2000-09-14 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added $(GNOME_PRINT_LIBS) to evolution_LDADD. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 85bb603ffb..211fdfdb2a 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -742,24 +742,6 @@ stop_progress_bar (EShellView *shell_view) /* EvolutionShellView interface callbacks. */ -/* - * MOVEME: into Bonobo. - */ -static void -bonobo_ui_container_set_status (Bonobo_UIContainer container, - const char *text, - CORBA_Environment *opt_ev) -{ - char *str; - - g_return_if_fail (text != NULL); - g_return_if_fail (container != CORBA_OBJECT_NIL); - - str = g_strdup_printf ("<item name=\"main\">%s</item>", text); - - bonobo_ui_component_set (NULL, container, "/status", str, opt_ev); -} - static void shell_view_interface_set_message_cb (EvolutionShellView *shell_view, const char *message, |