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

« back to all changes in this revision

Viewing changes to gtk2_ardour/ardour_dialog.cc

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2008-02-07 20:51:55 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080207205155-xzi5lq5s2o1okvx8
Tags: 1:2.3.1-1
* New upstream release
* debian/control:
   - build-depend on libfftw3-dev (Closes: #463803)
   - added Homepage, Vcs-Svn, Vcs-Browser
* debian/patches
   - dropped 50-soundtouch.patch (fixed upstream)
   - updated 80_ardourino.patch
   - dropped unused patches from source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "ardour_dialog.h"
25
25
#include "keyboard.h"
26
26
#include "ardour_ui.h"
27
 
 
 
27
#include "splash.h"
28
28
 
29
29
ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
30
30
        : Dialog (title, modal, use_seperator)
66
66
{
67
67
        Dialog::on_unmap ();
68
68
}
 
69
 
 
70
void
 
71
ArdourDialog::on_show ()
 
72
{
 
73
        // never allow the splash screen to obscure any dialog
 
74
 
 
75
        Splash* spl = Splash::instance();
 
76
 
 
77
        if (spl) {
 
78
                spl->pop_back ();
 
79
        }
 
80
 
 
81
        Dialog::on_show ();
 
82
}