# HG changeset patch # User Chris Cannam # Date 1396257621 -3600 # Node ID 394caa98d21a66bdb9942dd60e8be684a73d338c # Parent 03423269a9d0c39b0ad2e39bd9435d0a353546ce Use application name in key & mouse reference instead of hardcoding SV diff -r 03423269a9d0 -r 394caa98d21a widgets/KeyReference.cpp --- a/widgets/KeyReference.cpp Thu Mar 27 18:12:38 2014 +0000 +++ b/widgets/KeyReference.cpp Mon Mar 31 10:20:21 2014 +0100 @@ -172,7 +172,8 @@ m_text->setReadOnly(true); m_dialog = new QDialog; - m_dialog->setWindowTitle(tr("Sonic Visualiser: Key and Mouse Reference")); + m_dialog->setWindowTitle(tr("%1: Key and Mouse Reference") + .arg(QApplication::applicationName())); QVBoxLayout *layout = new QVBoxLayout; m_dialog->setLayout(layout);