~ubuntu-branches/ubuntu/karmic/mhwaveedit/karmic

« back to all changes in this revision

Viewing changes to src/int_box.c

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2008-01-08 22:20:37 UTC
  • mfrom: (2.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080108222037-tsazhckl5vmc8yih
Tags: 1.4.14-2
Added desktop file (Closes: #457849), thanks to Marco Rodrigues

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
#endif /* GTK 2 */
61
61
 
62
 
static gint intbox_signals[LAST_SIGNAL] = { 0 };
 
62
static guint intbox_signals[LAST_SIGNAL] = { 0 };
63
63
 
64
64
static void intbox_update_text(Intbox *box)
65
65
{
220
220
          gtk_adjustment_set_value(box->adj,box->val);
221
221
     }
222
222
     w = gtk_hscale_new(box->adj);
 
223
     gtk_scale_set_digits(GTK_SCALE(w),0);
223
224
#if GTK_MAJOR_VERSION > 1
224
225
     gtk_widget_size_request(w,&req);
225
226
     gtk_widget_set_usize(w,req.width*5,req.height);