summaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/window.c b/src/window.c
index 325184f..a1acd33 100644
--- a/src/window.c
+++ b/src/window.c
@@ -37,7 +37,6 @@ struct _MqWindow {
MqConfig *config;
GtkWidget *notebook;
MqTabPage *root_tab;
- guint current_tab;
gboolean fullscreen;
};
@@ -352,19 +351,6 @@ mq_window_toggle_fullscreen(MqWindow *window)
}
}
-void
-mq_window_set_current_tab(MqWindow *window, guint tab)
-{
- window->current_tab = tab;
- gtk_notebook_set_current_page(GTK_NOTEBOOK(window->notebook), tab - 1);
-}
-
-guint
-mq_window_get_current_tab(MqWindow *window)
-{
- return window->current_tab;
-}
-
guint
mq_window_get_num_tabs(MqWindow *window)
{