Tag the "has_child" argument to "prefs_tree_page_add()" as unused when

building with GTK+ 2.x or later, as it's only needed and only used for
1.2[.x].

svn path=/trunk/; revision=11022
This commit is contained in:
Guy Harris 2004-05-27 21:42:54 +00:00
parent 8d121bfb92
commit 257f4b8c80
1 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* prefs_dlg.c
* Routines for handling preferences
*
* $Id: prefs_dlg.c,v 1.85 2004/05/27 18:12:58 guy Exp $
* $Id: prefs_dlg.c,v 1.86 2004/05/27 21:42:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -346,7 +346,12 @@ module_prefs_show(module_t *module, gpointer user_data)
/* add a page to the tree */
prefs_tree_iter
prefs_tree_page_add(const gchar *title, gint page_nr,
gpointer store, prefs_tree_iter *parent_iter, gboolean has_child)
gpointer store, prefs_tree_iter *parent_iter,
gboolean has_child
#if GTK_MAJOR_VERSION >= 2
_U_
#endif
)
{
#if GTK_MAJOR_VERSION < 2
const gchar *label_ptr = title;