diff --git a/ChangeLog b/ChangeLog index 6a1a471c10..b896886767 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-05-25 Michael Natterer + + * plug-ins/common/uniteditor.c (unit_editor_dialog): removed a + left over GTK_CHECK_VERSION(2,2,0). + 2003-05-24 Hans Breuer * **/makefile.msc **/*.def : updated win32 (msvc) build diff --git a/plug-ins/common/uniteditor.c b/plug-ins/common/uniteditor.c index 3a811845c8..bf74f44f6b 100644 --- a/plug-ins/common/uniteditor.c +++ b/plug-ins/common/uniteditor.c @@ -599,13 +599,8 @@ unit_editor_dialog (void) col = gtk_tree_view_column_new_with_attributes (gettext (columns[i].title), gtk_cell_renderer_text_new (), - - "text", i, - - (GTK_CHECK_VERSION (2,2,0) ? - "cell-background-gdk" : NULL), - BG_COLOR, - + "text", i, + "cell-background-gdk", BG_COLOR, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tv), col);