[gtk+] Remove gtk_notebook_set_window_creation_hook in testnotebookdnd.c
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Remove gtk_notebook_set_window_creation_hook in testnotebookdnd.c
- Date: Fri, 24 Sep 2010 15:54:25 +0000 (UTC)
commit 8578ff4b381a6a992ef9f8fbc27815bababc9b50
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Sep 24 11:53:20 2010 -0400
Remove gtk_notebook_set_window_creation_hook in testnotebookdnd.c
tests/testnotebookdnd.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/tests/testnotebookdnd.c b/tests/testnotebookdnd.c
index 6c760db..459146d 100644
--- a/tests/testnotebookdnd.c
+++ b/tests/testnotebookdnd.c
@@ -78,6 +78,8 @@ window_creation_function (GtkNotebook *source_notebook,
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
notebook = gtk_notebook_new ();
+ g_signal_connect (notebook, "create-window",
+ G_CALLBACK (window_creation_function), NULL);
gtk_notebook_set_group_name (GTK_NOTEBOOK (notebook),
gtk_notebook_get_group_name (source_notebook));
@@ -150,6 +152,8 @@ create_notebook (gchar **labels,
gint count = 0;
notebook = gtk_notebook_new ();
+ g_signal_connect (notebook, "create-window",
+ G_CALLBACK (window_creation_function), NULL);
gtk_notebook_set_tab_pos (GTK_NOTEBOOK (notebook), pos);
gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE);
@@ -192,6 +196,8 @@ create_notebook_with_notebooks (gchar **labels,
gint count = 0;
notebook = gtk_notebook_new ();
+ g_signal_connect (notebook, "create-window",
+ G_CALLBACK (window_creation_function), NULL);
gtk_notebook_set_tab_pos (GTK_NOTEBOOK (notebook), pos);
gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE);
@@ -252,8 +258,6 @@ main (gint argc, gchar *argv[])
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
table = gtk_table_new (3, 2, FALSE);
- gtk_notebook_set_window_creation_hook (window_creation_function, NULL, NULL);
-
gtk_table_attach_defaults (GTK_TABLE (table),
create_notebook (tabs1, GROUP_A, PACK_ALTERNATE, GTK_POS_TOP),
0, 1, 0, 1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]