Fix gcc compile errors....

svn path=/trunk/; revision=33850
This commit is contained in:
Bill Meier 2010-08-19 15:22:03 +00:00
parent 3911b90cde
commit b662825831
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ topic_cb(GtkWidget *w _U_, topic_action_e action)
gboolean
topic_menu_cb(GtkWidget *w _U_, gpointer dummy _U_, gpointer user_data)
topic_menu_cb(GtkWidget *w _U_, GdkEventButton *event _U_, gpointer user_data)
{
topic_action((topic_action_e)GPOINTER_TO_INT(user_data));
return TRUE;

View File

@ -117,7 +117,7 @@ void topic_cb(GtkWidget *widget, topic_action_e topic);
* @param user_data the topic to display
* @return TRUE
*/
gboolean topic_menu_cb(GtkWidget *widget _U_, gpointer dummy _U_, gpointer user_data);
gboolean topic_menu_cb(GtkWidget *widget _U_, GdkEventButton *event _U_, gpointer user_data);
/** Redraw all the help dialog text widgets, to use a new font. */
void help_redraw(void);