X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fgtk%2Fhelpmenu.c;h=6d3f9e0a136aedd900d5025e696c57a840860daa;hb=7f72e34564823629e4f28ac0452217ca514a18c1;hp=4a8d9dc5377a157e16b03439948e2ff15c345d4f;hpb=1eb382f72510d50b3636fb88c4bfaf17183672b6;p=emu8051.git diff --git a/src/gtk/helpmenu.c b/src/gtk/helpmenu.c index 4a8d9dc..6d3f9e0 100644 --- a/src/gtk/helpmenu.c +++ b/src/gtk/helpmenu.c @@ -44,6 +44,8 @@ static void HelpCommandsEvent(gchar *string) { + (void) string; /* Remove compiler warning about unused variables. */ + ShowMessage("Command Line Options", COMMAND_LINE_OPTIONS, GTK_JUSTIFY_LEFT, MESSAGE_DIALOG_FIXED_FONT); } @@ -51,6 +53,10 @@ HelpCommandsEvent(gchar *string) static void HelpAboutEvent(GtkWidget *widget, gpointer data) { + /* Remove compiler warning about unused variables. */ + (void) widget; + (void) data; + const char *authors[] = { "Hugo Villeneuve ", "Jonathan St-André",