Small fix in changing column title.

svn path=/trunk/; revision=31098
This commit is contained in:
Stig Bjørlykke 2009-11-27 18:00:07 +00:00
parent 63fa42c5ab
commit 028996daf0
1 changed files with 2 additions and 1 deletions

View File

@ -199,7 +199,8 @@ col_title_change_cancel (GtkWidget *w _U_, gpointer parent_w)
static void
col_title_edit_dlg (GtkTreeViewColumn *col)
{
const gchar *value = gtk_tree_view_column_get_title(col);
GtkWidget *title_lb = gtk_tree_view_column_get_widget(col);
const gchar *value = gtk_label_get_text(GTK_LABEL(title_lb));
GtkWidget *win, *main_tb, *main_vb, *bbox, *cancel_bt, *ok_bt;
GtkWidget *entry, *label;