NO-OP: Clarify function name

This commit is contained in:
Robin Gareus 2018-11-28 14:56:04 +01:00
parent 76f9764a44
commit 245d48dbd0
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
10 changed files with 19 additions and 22 deletions

View file

@ -124,13 +124,13 @@ idle_notify_engine_stopped ()
}
bool
ARDOUR_UI_UTILS::no_engine_notify ()
ARDOUR_UI_UTILS::engine_is_running ()
{
if (ARDOUR::AudioEngine::instance()->running ()) {
return false; // 0 == OK
return true;
}
Glib::signal_idle().connect (sigc::ptr_fun (&idle_notify_engine_stopped));
return true;
return false;
}