X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fgtk%2Ftimerwin.c;h=985ffd4218fb02e7dee0e21f6abc51122f05597b;hb=f7e3f1d8d0438f52e4f988a12318075cc1b43568;hp=f65d5257f482c14a582bb2eeaa2accf823047821;hpb=3c838204cd78bcf106fdd65476180659ab629fcb;p=emu8051.git diff --git a/src/gtk/timerwin.c b/src/gtk/timerwin.c index f65d525..985ffd4 100644 --- a/src/gtk/timerwin.c +++ b/src/gtk/timerwin.c @@ -27,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(); @@ -52,7 +53,8 @@ timerwin_update(void) for (id = 0; id < GP_TIMERS_COUNT; id++) { /* Display textin bold, with big font size. */ - sprintf(buf , "%08d cycles", gp_timer_read(id)); + sprintf(buf , "%08d cycles", + gp_timer_read(id)); gtk_label_set_markup(GTK_LABEL(label[id]), buf); }