diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-30 17:32:11 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-30 17:32:11 +0800 |
commit | 43aa02ecd418a9a898d4287aa5a29f050486d605 (patch) | |
tree | e4bb3e630f0d4bbf43a9d710e50f1ad68ca94d94 /shell/evolution-shell-client.h | |
parent | 1e98eda7a4b8d6dd4c648af5fd407c8eef5dd1bd (diff) | |
download | gsoc2013-evolution-43aa02ecd418a9a898d4287aa5a29f050486d605.tar.gz gsoc2013-evolution-43aa02ecd418a9a898d4287aa5a29f050486d605.tar.zst gsoc2013-evolution-43aa02ecd418a9a898d4287aa5a29f050486d605.zip |
Derive EvolutionShellClient from BonoboObjectClient instead of BonoboObject.
svn path=/trunk/; revision=3825
Diffstat (limited to 'shell/evolution-shell-client.h')
-rw-r--r-- | shell/evolution-shell-client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/evolution-shell-client.h b/shell/evolution-shell-client.h index 4b5d3dd151..daf0c65e76 100644 --- a/shell/evolution-shell-client.h +++ b/shell/evolution-shell-client.h @@ -28,7 +28,7 @@ #include <config.h> #endif -#include <bonobo/bonobo-object.h> +#include <bonobo/bonobo-object-client.h> #include "Evolution.h" @@ -49,13 +49,13 @@ typedef struct _EvolutionShellClientPrivate EvolutionShellClientPrivate; typedef struct _EvolutionShellClientClass EvolutionShellClientClass; struct _EvolutionShellClient { - BonoboObject parent; + BonoboObjectClient parent; EvolutionShellClientPrivate *priv; }; struct _EvolutionShellClientClass { - BonoboObjectClass parent_class; + BonoboObjectClientClass parent_class; }; |