From 3be3c9494b2aa680b3ca5e27752e62d0619e9da7 Mon Sep 17 00:00:00 2001
From: Ettore Perazzoli <ettore@src.gnome.org>
Date: Tue, 14 Jan 2003 20:19:26 +0000
Subject: Do not #include <e-bonobo-widget.h>. (e_set_dialog_parent): Remove
 the

* e-dialog-utils.c: Do not #include <e-bonobo-widget.h>.
(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/e-dialog-utils.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

(limited to 'e-util/e-dialog-utils.c')

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 <glib.h>
 #include <gdk/gdkx.h>
 #include <gdk/gdkprivate.h>
@@ -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