[epiphany] windows-commands: remove dead code



commit 0acc9702a2c25cb121d5e7e9d731d3b3ea26ecfa
Author: Claudio Saavedra <csaavedra igalia com>
Date:   Thu Jun 14 16:03:04 2012 +0300

    windows-commands: remove dead code
    
    The toolbar-editor is gone, so this code should be gone too.

 src/window-commands.c |   15 ---------------
 1 files changed, 0 insertions(+), 15 deletions(-)
---
diff --git a/src/window-commands.c b/src/window-commands.c
index e32bd5b..5357457 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -837,24 +837,9 @@ window_cmd_view_fullscreen (GtkAction *action,
 			    EphyWindow *window)
 {
 	if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)))
-	{
-		GtkWidget *toolbar_editor;
-		toolbar_editor = GTK_WIDGET (g_object_get_data (G_OBJECT (window),
-								"EphyToolbarEditor"));
-		if (toolbar_editor != NULL)
-		{
-			/* We don't want the toolbar editor to show
-			 * while in fullscreen.
-			 */
-			gtk_dialog_response (GTK_DIALOG (toolbar_editor),
-					     GTK_RESPONSE_DELETE_EVENT);
-		}
 		gtk_window_fullscreen (GTK_WINDOW (window));
-	}
 	else
-	{
 		gtk_window_unfullscreen (GTK_WINDOW (window));
-	}
 }
 
 void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]