diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-12-02 12:53:57 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-12-02 12:53:57 +0800 |
commit | 215a9c0ea3cb222004ff8842b663ea7a77dcb3e5 (patch) | |
tree | 3b0e35a8102377c807ad33063082a5b9a9f7813a /addressbook/gui/component/addressbook-component.h | |
parent | d904b8e0d8f1702e4a32989f0fb0a4c2ba872d29 (diff) | |
download | gsoc2013-evolution-215a9c0ea3cb222004ff8842b663ea7a77dcb3e5.tar.gz gsoc2013-evolution-215a9c0ea3cb222004ff8842b663ea7a77dcb3e5.tar.zst gsoc2013-evolution-215a9c0ea3cb222004ff8842b663ea7a77dcb3e5.zip |
Replace activity_client with activity_id. (set_status_message): Use the
* gui/component/addressbook.c (struct AddressbookView): Replace
activity_client with activity_id.
(set_status_message): Use the EActivityHandler from the
AddressbookComponent.
* gui/component/addressbook-component.c (struct
_AddressbookComponentPrivate): New member activity_handler.
(addressbook_component_init): Init.
(impl_dispose): Unref.
(addressbook_component_peek_activity_handler): New.
(impl_createControls): Return an ETaskBar as the statusbar control
and attach it to the activity handler.
svn path=/trunk/; revision=23560
Diffstat (limited to 'addressbook/gui/component/addressbook-component.h')
-rw-r--r-- | addressbook/gui/component/addressbook-component.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook-component.h b/addressbook/gui/component/addressbook-component.h index bf72a431d8..f08f54aaaf 100644 --- a/addressbook/gui/component/addressbook-component.h +++ b/addressbook/gui/component/addressbook-component.h @@ -26,6 +26,7 @@ #include <bonobo/bonobo-object.h> #include "Evolution.h" +#include "e-activity-handler.h" #define ADDRESSBOOK_TYPE_COMPONENT (addressbook_component_get_type ()) #define ADDRESSBOOK_COMPONENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ADDRESSBOOK_TYPE_COMPONENT, AddressbookComponent)) @@ -55,5 +56,7 @@ GType addressbook_component_get_type (void); AddressbookComponent *addressbook_component_peek (void); +EActivityHandler *addressbook_component_peek_activity_handler (AddressbookComponent *component); + #endif /* _ADDRESSBOOK_COMPONENT_H_ */ |