~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

« back to all changes in this revision

Viewing changes to gtk2_ardour/sfdb_ui.cc

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-07-29 11:27:04 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729112704-x1rmgb4tjotjyu5u
Tags: 1:2.5-0ubuntu1
* New upstream release.
* debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
  Ubuntu doesn't concern itself with s390.
* debian/control:
  - Fix package description, thanks to the patch in Debian bug #485892.
  - Metadata cleanup and sync control/control.in files.
  - Add libaubio-dev to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
          found_list (ListStore::create(found_list_columns)),
395
395
          freesound_list (ListStore::create(freesound_list_columns)),
396
396
          chooser (FILE_CHOOSER_ACTION_OPEN),
397
 
          found_list_view (found_list),
398
 
          freesound_list_view (freesound_list),
399
397
          preview (persistent),
400
398
          found_search_btn (_("Search")),
401
 
          freesound_search_btn (_("Start Downloading"))
402
 
 
 
399
          found_list_view (found_list),
 
400
          freesound_search_btn (_("Start Downloading")),
 
401
          freesound_list_view (freesound_list)
403
402
{
404
403
        resetting_ourselves = false;
405
404
        gm = 0;
430
429
                notebook.append_page (chooser, _("Browse Files"));
431
430
        }
432
431
        
 
432
        hpacker.set_spacing (6);
 
433
        hpacker.pack_start (notebook, true, true);
 
434
        hpacker.pack_start (preview, false, false);
 
435
        
 
436
        get_vbox()->pack_start (hpacker, true, true);
 
437
 
433
438
        //add tag search
434
439
        {
435
440
                VBox* vbox;
436
441
                HBox* hbox;
437
442
 
438
 
                hpacker.set_spacing (6);
439
 
                hpacker.pack_start (notebook, true, true);
440
 
                hpacker.pack_start (preview, false, false);
441
 
 
442
 
                get_vbox()->pack_start (hpacker, true, true);
443
443
 
444
444
                hbox = manage(new HBox);
445
445
                hbox->pack_start (found_entry);
472
472
                HBox* passbox;
473
473
                Label* label;
474
474
 
475
 
                hpacker.set_spacing (6);
476
 
                hpacker.pack_start (notebook, true, true);
477
 
                hpacker.pack_start (preview, false, false);
478
 
 
479
 
                get_vbox()->pack_start (hpacker, true, true);
480
 
 
481
475
                passbox = manage(new HBox);
482
476
                passbox->set_border_width (12);
483
477
                passbox->set_spacing (6);