summaryrefslogtreecommitdiff
path: root/examples/menu/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/menu/menu.c')
-rw-r--r--examples/menu/menu.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/menu/menu.c b/examples/menu/menu.c
index c90e9065ef..6cf1dce09d 100644
--- a/examples/menu/menu.c
+++ b/examples/menu/menu.c
@@ -1,9 +1,8 @@
-#include <config.h>
#include <stdio.h>
#include <gtk/gtk.h>
-static gint button_press (GtkWidget *, GdkEvent *);
+static gboolean button_press (GtkWidget *, GdkEvent *);
static void menuitem_response (gchar *);
int main( int argc,
@@ -109,8 +108,8 @@ int main( int argc,
* the button that was pressed.
*/
-static gint button_press( GtkWidget *widget,
- GdkEvent *event )
+static gboolean button_press( GtkWidget *widget,
+ GdkEvent *event )
{
if (event->type == GDK_BUTTON_PRESS) {