~ubuntu-branches/ubuntu/karmic/avidemux/karmic-proposed

« back to all changes in this revision

Viewing changes to avidemux/ADM_userInterfaces/ADM_GTK/ADM_dialog/DIA_partial.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:
153
153
                    (GtkAttachOptions) (0), 0, 0);
154
154
  gtk_misc_set_alignment (GTK_MISC (label2), 0, 0.5);
155
155
 
156
 
  spinbuttonStart_adj = gtk_adjustment_new (1, 0, 1000000, 1, 10, 10);
 
156
  spinbuttonStart_adj = gtk_adjustment_new (1, 0, 1000000, 1, 10, 0);
157
157
  spinbuttonStart = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonStart_adj), 1, 0);
158
158
  gtk_widget_show (spinbuttonStart);
159
159
  gtk_table_attach (GTK_TABLE (table1), spinbuttonStart, 1, 2, 0, 1,
161
161
                    (GtkAttachOptions) (0), 0, 0);
162
162
  gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbuttonStart), TRUE);
163
163
 
164
 
  spinbuttonSize_adj = gtk_adjustment_new (1, 0, 1000000, 1, 10, 10);
 
164
  spinbuttonSize_adj = gtk_adjustment_new (1, 0, 1000000, 1, 10, 0);
165
165
  spinbuttonSize = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonSize_adj), 1, 0);
166
166
  gtk_widget_show (spinbuttonSize);
167
167
  gtk_table_attach (GTK_TABLE (table1), spinbuttonSize, 1, 2, 1, 2,