s/width/fixed_width/ in order to get things to compile.

2001-10-03  James Henstridge  <james@daa.com.au>

        * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
        s/width/fixed_width/ in order to get things to compile.
This commit is contained in:
James Henstridge 2001-10-03 13:33:50 +00:00 committed by James Henstridge
parent f2f359089f
commit b8a10f46a9
8 changed files with 39 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1,3 +1,8 @@
2001-10-03 James Henstridge <james@daa.com.au>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
s/width/fixed_width/ in order to get things to compile.
Wed Oct 3 00:37:09 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkcelleditable.c: docs

View File

@ -1475,14 +1475,14 @@ gtk_tree_view_column_set_fixed_width (GtkTreeViewColumn *tree_column,
gint fixed_width)
{
g_return_if_fail (GTK_IS_TREE_VIEW_COLUMN (tree_column));
g_return_if_fail (width > 0);
g_return_if_fail (fixed_width > 0);
if (tree_column->column_type == GTK_TREE_VIEW_COLUMN_AUTOSIZE)
return;
tree_column->fixed_width = width;
tree_column->requested_width = width;
_gtk_tree_view_column_set_width (tree_column, width);
tree_column->fixed_width = fixed_width;
tree_column->requested_width = fixed_width;
_gtk_tree_view_column_set_width (tree_column, fixed_width);
}
/**