~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to src/export/Export.cpp

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
                          bool selectedOnly,
206
206
                          double t0,
207
207
                          double t1,
208
 
                          MixerSpec *mixerSpec)
 
208
                          MixerSpec *mixerSpec,
 
209
                          bool use_meta)
209
210
{
210
211
   if (project == NULL) {
211
212
      project = GetActiveProject();
968
969
   
969
970
   vertSizer->Add( horSizer, 0, wxALIGN_CENTRE | wxALL, 5 );
970
971
 
971
 
   horSizer = new wxBoxSizer( wxHORIZONTAL );
972
 
   
973
 
   wxButton *cancel = new wxButton( this, wxID_CANCEL, _( "&Cancel" ) );
974
 
   horSizer->Add( cancel, 0, wxALIGN_CENTRE | wxALL, 5 );
975
 
 
976
 
   wxButton *ok = new wxButton( this, wxID_OK, _( "&OK" ) );
977
 
   ok->SetDefault();
978
 
   horSizer->Add( ok, 0, wxALIGN_CENTRE | wxALL, 5 );
979
 
 
980
 
   vertSizer->Add( horSizer, 0, wxALIGN_CENTRE | wxALL, 5 );
 
972
   vertSizer->Add( CreateStdButtonSizer(this, eCancelButton|eOkButton), 0, wxEXPAND );
981
973
 
982
974
   SetAutoLayout( true );
983
975
   SetSizer( vertSizer );