[epiphany] ephy-notebook.c: better yet, get rid of the test completely



commit 5c594b0747b1f274b64ecc0fbb866793f6e5ff4a
Author: Xan Lopez <xan gnome org>
Date:   Sun Sep 20 17:55:16 2009 +0300

    ephy-notebook.c: better yet, get rid of the test completely
    
    Since gtk_notebook_get_nth_page, used just after that, returns NULL
    for out-of-bounds pages.

 src/ephy-notebook.c |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index a7a6fa1..9121452 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -248,13 +248,6 @@ find_tab_num_at_pos (EphyNotebook *notebook, gint abs_x, gint abs_y)
 	GtkNotebook *nb = GTK_NOTEBOOK (notebook);
 	GtkWidget *page;
 
-	tab_pos = gtk_notebook_get_tab_pos (nb);
-
-	if (gtk_notebook_get_n_pages (nb) == 0)
-	{
-		return AFTER_ALL_TABS;
-	}
-
 	/* For some reason unfullscreen + quick click can
 	   cause a wrong click event to be reported to the tab */
 	if (!is_in_notebook_window (notebook, abs_x, abs_y))
@@ -262,6 +255,8 @@ find_tab_num_at_pos (EphyNotebook *notebook, gint abs_x, gint abs_y)
 		return NOT_IN_APP_WINDOWS;
 	}
 
+	tab_pos = gtk_notebook_get_tab_pos (nb);
+
 	while ((page = gtk_notebook_get_nth_page (nb, page_num)))
 	{
 		GtkWidget *tab;



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