diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-23 00:30:00 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-23 00:30:00 +0800 |
commit | c74b334a2ca16a82d4652a5e5685e361bdaf08dc (patch) | |
tree | 39fba12b21b7fd9e89519238b0b714259a1660c0 /widgets/table | |
parent | cf93af47a5508c1dcb398edb17c9ff775d0c2a9a (diff) | |
download | gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar.gz gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar.bz2 gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar.lz gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar.xz gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.tar.zst gsoc2013-evolution-c74b334a2ca16a82d4652a5e5685e361bdaf08dc.zip |
Killed a warning.
2000-06-22 Christopher James Lahey <clahey@helixcode.com>
* e-table-item.c: Killed a warning.
svn path=/trunk/; revision=3691
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c index 3632e9fe68..b12021ae46 100644 --- a/widgets/table/e-table-item.c +++ b/widgets/table/e-table-item.c @@ -697,7 +697,7 @@ eti_add_table_model (ETableItem *eti, ETableModel *table_model) eti->uses_source_model = 1; eti->source_model = E_TABLE_SUBSET(table_model)->source; if (eti->source_model) - gtk_object_ref(eti->source_model); + gtk_object_ref(GTK_OBJECT(eti->source_model)); } eti_table_model_changed (table_model, eti); |