diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2008-04-08 03:53:29 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2008-04-08 03:53:29 +0000 |
commit | 578c25b88f23b5d534869b7cb1388627a368f17b (patch) | |
tree | edab7b43e7df62a19447dc0bc8a9677764fb968b | |
parent | 8b4f26afc6980bb6b9287f73221a39fd284927f0 (diff) | |
download | wireshark-578c25b88f23b5d534869b7cb1388627a368f17b.tar.gz wireshark-578c25b88f23b5d534869b7cb1388627a368f17b.tar.bz2 wireshark-578c25b88f23b5d534869b7cb1388627a368f17b.zip |
provide gtk_tree_view_expand_to_path only for exactly GTK2.0, avoid problems with GTK 3.0 later
svn path=/trunk/; revision=24841
-rw-r--r-- | gtk/proto_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/proto_draw.c b/gtk/proto_draw.c index ab1830c810..33a4c2b8ff 100644 --- a/gtk/proto_draw.c +++ b/gtk/proto_draw.c @@ -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. |