Add option no-define to AM_INIT_AUTOMAKE
[emu8051.git] / src / gtk / timerwin.c
index 045ca1f..985ffd4 100644 (file)
@@ -4,19 +4,7 @@
  * Copyright (C) 1999 Jonathan St-AndrĂ©
  * Copyright (C) 1999 Hugo Villeneuve <hugo@hugovil.com>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ * This file is released under the GPLv2
  */
 
 #if HAVE_CONFIG_H
@@ -39,9 +27,10 @@ button_add_stock(GtkWidget *box, gchar *stock_id, int display_label)
        GtkWidget *button;
 
        /* Create the button. */
-       if (display_label != false)
+       if (display_label) {
+               /* By default, a label is appended to stock buttons. */
                button = gtk_button_new_from_stock(stock_id);
-       else {
+       else {
                GtkWidget *icon;
 
                button = gtk_button_new();
@@ -64,7 +53,8 @@ timerwin_update(void)
 
        for (id = 0; id < GP_TIMERS_COUNT; id++) {
                /* Display textin bold, with big font size. */
-               sprintf(buf , "<b><big>%08d</big></b> cycles", gp_timer_read(id));
+               sprintf(buf , "<b><big>%08d</big></b> cycles",
+                       gp_timer_read(id));
 
                gtk_label_set_markup(GTK_LABEL(label[id]), buf);
        }