diff options
author | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 07:40:42 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-09-14 07:40:42 +0800 |
commit | 9964204c9c080650f79863a483a4c42886d55239 (patch) | |
tree | 3c0693385a73461319ab94b63fb15cbe80ae88e5 /shell/e-shell-view.h | |
parent | 5678a57e33c55ab2622a3fbb823b42e4f80c31cc (diff) | |
download | gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.gz gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.bz2 gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.lz gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.xz gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.tar.zst gsoc2013-evolution-9964204c9c080650f79863a483a4c42886d55239.zip |
The Commit from hell that breaks all UI related stuff;
Anything UI related that breaks is now my fault; apologies in advance.
svn path=/trunk/; revision=5415
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r-- | shell/e-shell-view.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h index 69a0e5c22c..bd2b9a126e 100644 --- a/shell/e-shell-view.h +++ b/shell/e-shell-view.h @@ -28,8 +28,7 @@ #include <config.h> #endif -#include <libgnomeui/gnome-app.h> -#include <bonobo/bonobo-ui-handler.h> +#include <bonobo/bonobo-app.h> #include "e-shell.h" @@ -57,13 +56,13 @@ enum _EShellViewSubwindowMode { typedef enum _EShellViewSubwindowMode EShellViewSubwindowMode; struct _EShellView { - GnomeApp parent; + BonoboWin parent; EShellViewPrivate *priv; }; struct _EShellViewClass { - GnomeAppClass parent_class; + BonoboWinClass parent_class; /* Signals. */ void (* shortcut_bar_mode_changed) (EShellView *shell_view, EShellViewSubwindowMode new_mode); @@ -72,9 +71,9 @@ struct _EShellViewClass { GtkType e_shell_view_get_type (void); -void e_shell_view_construct (EShellView *shell_view, +EShellView *e_shell_view_construct (EShellView *shell_view, EShell *shell); -GtkWidget *e_shell_view_new (EShell *shell); +EShellView *e_shell_view_new (EShell *shell); gboolean e_shell_view_display_uri (EShellView *shell_view, const char *uri); |