mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
gtkmm: use get_mapped instead of deprecated Gtk::Widget::is_mapped()
This commit is contained in:
parent
539ef331d1
commit
d52c727ec5
19 changed files with 33 additions and 33 deletions
|
|
@ -157,7 +157,7 @@ Splash::pop_back_for (Gtk::Window& win)
|
|||
#else
|
||||
if (UIConfiguration::instance().get_hide_splash_screen ()) {
|
||||
hide ();
|
||||
} else if (is_mapped()) {
|
||||
} else if (get_mapped ()) {
|
||||
get_window()->restack (win.get_window(), false);
|
||||
if (0 == win.get_transient_for ()) {
|
||||
win.set_transient_for (*this);
|
||||
|
|
@ -285,7 +285,7 @@ Splash::idle_after_expose ()
|
|||
void
|
||||
Splash::display ()
|
||||
{
|
||||
bool was_mapped = is_mapped ();
|
||||
bool was_mapped = get_mapped ();
|
||||
|
||||
if (ARDOUR_COMMAND_LINE::no_splash) {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue