aboutsummaryrefslogtreecommitdiffstats
path: root/notes
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-10-21 05:26:47 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-10-21 05:26:47 +0800
commit2da3ba3890493284503868269891bed6420355b4 (patch)
tree99d583e6244d4e2d35e6f8b2c1df4d97110812cf /notes
parent1fff2516257a785bb4597c7ad4917405bbcb8cbc (diff)
downloadgsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar.gz
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar.bz2
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar.lz
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar.xz
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.tar.zst
gsoc2013-evolution-2da3ba3890493284503868269891bed6420355b4.zip
2000-10-20 Michael Meeks <michael@helixcode.com>
* contact-editor/e-contact-editor.c (tb_save_and_close_cb): * gui/component/addressbook.c (toggle_view_as_cb): 2000-10-20 Michael Meeks <michael@helixcode.com> * notes/component-factory.c (control_activate_cb): svn path=/trunk/; revision=6087
Diffstat (limited to 'notes')
-rw-r--r--notes/component-factory.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/notes/component-factory.c b/notes/component-factory.c
index df7d14c129..58ebdf8c8d 100644
--- a/notes/component-factory.c
+++ b/notes/component-factory.c
@@ -18,7 +18,7 @@ static const EvolutionShellComponentFolderType folder_types[] = {
};
static void
-new_note_cb (BonoboUIHandler *uih, void *user_data, const char *path)
+new_note_cb (BonoboUIComponent *uih, void *user_data, const char *path)
{
g_print ("new note!\n");
}
@@ -31,13 +31,13 @@ static GnomeUIInfo gnome_toolbar [] = {
#ifdef THIS_NEEDS_UPDATING_FOR_NEW_BONOBOS
static void
-control_deactivate (BonoboControl *control, BonoboUIHandler *uih)
+control_deactivate (BonoboControl *control, BonoboUIComponent *uih)
{
bonobo_ui_handler_dock_remove (uih, "/Toolbar");
}
static void
-control_activate (BonoboControl *control, BonoboUIHandler *uih)
+control_activate (BonoboControl *control, BonoboUIComponent *uih)
{
Bonobo_UIContainer remote_uih;
GtkWidget *toolbar, *toolbar_frame;
@@ -75,7 +75,7 @@ static void
control_activate_cb (BonoboControl *control,
gboolean activate)
{
- BonoboUIHandler *uih;
+ BonoboUIComponent *uih;
uih = bonobo_control_get_ui_handler (control);
g_assert (uih);