0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0e02

This commit is contained in:
Bram Moolenaar
2006-04-18 21:55:01 +00:00
parent a93fa7ee78
commit c1e37901fc
46 changed files with 10995 additions and 4952 deletions

View File

@@ -3293,6 +3293,7 @@ gui_mch_update_tabline(void)
tabpage_T *tp;
int nr = 0;
int curtabidx = 0;
char_u *labeltext;
if (gui.tabline == NULL)
return;
@@ -3320,8 +3321,10 @@ gui_mch_update_tabline(void)
}
get_tabline_label(tp);
labeltext = CONVERT_TO_UTF8(NameBuff);
gtk_notebook_set_tab_label_text(GTK_NOTEBOOK(gui.tabline), page,
(const gchar *)NameBuff);
(const gchar *)labeltext);
CONVERT_TO_UTF8_FREE(labeltext);
}
/* Remove any old labels. */