From 3be3c9494b2aa680b3ca5e27752e62d0619e9da7 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 14 Jan 2003 20:19:26 +0000 Subject: Do not #include . (e_set_dialog_parent): Remove the * e-dialog-utils.c: Do not #include . (e_set_dialog_parent): Remove the BonoboWidget handling stuff (it doesn't really work anyways). * e-shell-view.c: Do not #include "e-bonobo-widget.h". * Makefile.am (widgetsinclude_HEADERS): Ooops, remove e-bonobo-widget.h. (libemiscwidgets_a_SOURCES): Likewise, remove e-bonobo-widget.c. svn path=/trunk/; revision=19460 --- e-util/ChangeLog | 6 ++++++ e-util/e-dialog-utils.c | 13 +++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 11175f8e88..58dcd79912 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2003-01-14 Ettore Perazzoli + + * e-dialog-utils.c: Do not #include . + (e_set_dialog_parent): Remove the BonoboWidget handling stuff (it + doesn't really work anyways). + 2003-01-14 Ettore Perazzoli * Makefile.am (eutilinclude_HEADERS): Add e-dialog-utils.h. diff --git a/e-util/e-dialog-utils.c b/e-util/e-dialog-utils.c index c4b36dc17a..2a4a3bb07d 100644 --- a/e-util/e-dialog-utils.c +++ b/e-util/e-dialog-utils.c @@ -24,8 +24,6 @@ #include "e-dialog-utils.h" -#include "widgets/misc/e-bonobo-widget.h" - #include #include #include @@ -123,11 +121,7 @@ void e_set_dialog_parent (GtkWindow *dialog, GtkWidget *parent_widget) { - Bonobo_PropertyBag property_bag; GtkWidget *toplevel; - GdkWindow *gdk_window; - CORBA_char *id; - guint32 xid; g_return_if_fail (dialog != NULL); g_return_if_fail (GTK_IS_WINDOW (dialog)); @@ -144,6 +138,12 @@ e_set_dialog_parent (GtkWindow *dialog, return; } +#if 0 + Bonobo_PropertyBag property_bag; + GdkWindow *gdk_window; + CORBA_char *id; + guint32 xid; + property_bag = bonobo_control_get_ambient_properties (BONOBO_CONTROL (toplevel), NULL); if (property_bag == CORBA_OBJECT_NIL) return; @@ -156,6 +156,7 @@ e_set_dialog_parent (GtkWindow *dialog, gdk_window = gdk_window_foreign_new (xid); set_transient_for_gdk (dialog, gdk_window); +#endif } /** -- cgit v1.2.3