[Xfce4-commits] [apps/xfce4-terminal] 01/01: Fix compilation warning on gtk_notebook_detach_tab
noreply at xfce.org
noreply at xfce.org
Thu Jun 30 13:02:26 CEST 2016
This is an automated email from the git hooks/post-receive script.
f2404 pushed a commit to branch master
in repository apps/xfce4-terminal.
commit f69aedffe37cd34de1f545b9e7a31bb3a9bb6ba9
Author: Igor <f2404 at yandex.ru>
Date: Thu Jun 30 14:02:21 2016 +0300
Fix compilation warning on gtk_notebook_detach_tab
---
terminal/terminal-window.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c
index 1b0b17f..71adfc0 100644
--- a/terminal/terminal-window.c
+++ b/terminal/terminal-window.c
@@ -1108,7 +1108,7 @@ terminal_window_notebook_drag_data_received (GtkWidget *widget,
/* remove the document from the source notebook */
#if GTK_CHECK_VERSION (3,16,0)
- gtk_notebook_detach_tab (notebook, *screen);
+ gtk_notebook_detach_tab (GTK_NOTEBOOK (notebook), *screen);
#else
gtk_container_remove (GTK_CONTAINER (notebook), *screen);
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list