summaryrefslogtreecommitdiffstats
path: root/src/tab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.c')
-rw-r--r--src/tab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tab.c b/src/tab.c
index 9d0ad94..47d048c 100644
--- a/src/tab.c
+++ b/src/tab.c
@@ -206,7 +206,7 @@ update_tab_label(MqTab *tab)
{
gchar *label;
- label = g_strdup_printf("%d. %s", tab->tab_position + 1, tab->title);
+ label = g_strdup_printf("%d. %s", tab->position + 1, tab->title);
gtk_label_set_text(GTK_LABEL(tab->tab_label), label);
gtk_widget_set_tooltip_text(tab->tab, label);
g_free(label);
@@ -291,6 +291,6 @@ mq_tab_get_container(MqTab *tab)
void
mq_tab_update_position(MqTab *tab, guint position)
{
- tab->tab_position = position;
+ tab->position = position;
update_tab_label(tab);
}