Fix typo in initialization progress message

This commit is contained in:
Colin Wallace
2015-04-02 21:29:45 +00:00
parent 44c42d9d38
commit a27bf57d48

View File

@@ -108,7 +108,7 @@ GuiApplication::GuiApplication()
m_controllerRackView = new ControllerRackView;
displayInitProgress(tr("Preparing project notes"));
m_projectNotes = new ProjectNotes;
displayInitProgress(tr("Preparing beat/baseline editor"));
displayInitProgress(tr("Preparing beat/bassline editor"));
m_bbEditor = new BBEditor(Engine::getBBTrackContainer());
displayInitProgress(tr("Preparing piano roll"));
m_pianoRoll = new PianoRollWindow();
@@ -136,4 +136,4 @@ void GuiApplication::displayInitProgress(const QString &msg)
// must force a UI update and process events, as there may be long gaps between processEvents() calls during init
m_loadingProgressLabel->repaint();
qApp->processEvents();
}
}