provide gtk_tree_view_expand_to_path only for exactly GTK2.0, avoid problems with GTK 3.0 later

svn path=/trunk/; revision=24841
This commit is contained in:
Ulf Lamping 2008-04-08 03:53:29 +00:00
parent 8b4f26afc6
commit 578c25b88f
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@
/* gtk_tree_view_expand_to_path doesn't exist in gtk+ v2.0 so we must include it
* when building with this version (taken from gtk+ v2.2.4) */
#if GTK_MAJOR_VERSION >= 2 && GTK_MINOR_VERSION == 0
#if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION == 0
/**
* gtk_tree_view_expand_to_path:
* @tree_view: A #GtkTreeView.