From aa53ef8dd2c8174a2428b2aa360c8dd0e045543e Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 13 Sep 2007 20:35:11 +0000 Subject: Fix the build. We don't need to manually add the window to the window group, since set_transient_for does that for us since gtk 2.10. svn path=/trunk/; revision=7430 --- embed/xulrunner/components/GeckoPromptService.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/embed/xulrunner/components/GeckoPromptService.cpp b/embed/xulrunner/components/GeckoPromptService.cpp index 0756fcedf..317c7487b 100644 --- a/embed/xulrunner/components/GeckoPromptService.cpp +++ b/embed/xulrunner/components/GeckoPromptService.cpp @@ -35,6 +35,8 @@ #include "gecko-embed.h" #include "gecko-embed-single.h" +#include "ephy-embed-shell.h" + #include "AutoJSContextStack.h" #include "AutoWindowModalState.h" #include "GeckoUtils.h" @@ -115,7 +117,7 @@ Prompter::Prompter (const char *aStock, { GtkWidget *parent, *hbox, *label, *image; - g_object_ref (gecko_embed_shell_get_default ()); + g_object_ref (ephy_embed_shell_get_default ()); mEntries[0] = mEntries[1] = nsnull; @@ -138,10 +140,7 @@ Prompter::Prompter (const char *aStock, { gtk_window_set_transient_for (GTK_WINDOW (mDialog), GTK_WINDOW (parent)); - - gtk_window_group_add_window (gecko_gui_ensure_window_group (GTK_WINDOW (parent)), - GTK_WINDOW (mDialog)); - } + } gtk_dialog_set_has_separator (mDialog, FALSE); gtk_window_set_resizable (GTK_WINDOW (mDialog), FALSE); @@ -199,7 +198,7 @@ Prompter::~Prompter () gtk_widget_destroy (GTK_WIDGET (mDialog)); g_object_unref (mDialog); - g_object_unref (gecko_embed_shell_get_default ()); + g_object_unref (ephy_embed_shell_get_default ()); } void -- cgit v1.2.3