~ubuntu-branches/ubuntu/jaunty/avidemux/jaunty

« back to all changes in this revision

Viewing changes to avidemux/ADM_userInterfaces/ADM_GTK/ADM_dialog/DIA_resize.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-02-17 23:41:46 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090217234146-eakx254awuch4wgw
Tags: 1:2.4.4-0.0ubuntu1
* Merge from debian multimedia, Ubuntu remaining changes:
  - debian/control:
    + Build-Depends on newer libx264-dev.
    + Don't Build-Depends on ccache and libamrnb-dev.
    + Build-Depends on libpulse-dev.
    + Fixed small typo in avidemux description.
  - Don't use ccache.
  - Drop patch to fix build with newer x264, it has been merged by upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
344
344
                    (GtkAttachOptions) (0), 0, 0);
345
345
  gtk_misc_set_alignment (GTK_MISC (label2), 0, 0.5);
346
346
 
347
 
  spinbutton_width_adj = gtk_adjustment_new (2, 0, 3000, 1, 10, 10);
 
347
  spinbutton_width_adj = gtk_adjustment_new (2, 0, 3000, 1, 10, 0);
348
348
  spinbutton_width = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton_width_adj), 1, 0);
349
349
  gtk_widget_show (spinbutton_width);
350
350
  gtk_table_attach (GTK_TABLE (table2), spinbutton_width, 1, 2, 0, 1,
352
352
                    (GtkAttachOptions) (0), 0, 0);
353
353
  gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton_width), TRUE);
354
354
 
355
 
  spinbutton_height_adj = gtk_adjustment_new (1, 0, 3000, 1, 10, 10);
 
355
  spinbutton_height_adj = gtk_adjustment_new (1, 0, 3000, 1, 10, 0);
356
356
  spinbutton_height = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton_height_adj), 1, 0);
357
357
  gtk_widget_show (spinbutton_height);
358
358
  gtk_table_attach (GTK_TABLE (table2), spinbutton_height, 1, 2, 1, 2,