Fix about menu entry and newline

This commit is contained in:
codestation
2013-10-01 13:36:58 -04:30
parent 6b60b8a89f
commit 9489a14fa2
3 changed files with 15 additions and 8 deletions

View File

@@ -117,7 +117,7 @@ void MainWidget::showAboutDialog()
about.setText(QString("QCMA ") + QCMA_VER);
about.setWindowTitle(tr("About QCMA"));
about.setInformativeText(tr("Copyright (C) 2013 Codestation\n"));
about.setInformativeText(tr("Copyright (C) 2013 Codestation") + "\n");
about.setStandardButtons(QMessageBox::Ok);
about.setIconPixmap(QPixmap(":/main/resources/qcma.png"));
about.setDefaultButton(QMessageBox::Ok);
@@ -141,7 +141,7 @@ void MainWidget::createTrayIcon()
options = new QAction(tr("&Settings"), this);
reload = new QAction(tr("&Refresh database"), this);
backup = new QAction(tr("&Backup Manager"), this);
about = new QAction(tr("&About"), this);
about = new QAction(tr("&About QCMA"), this);
about_qt = new QAction(tr("Abou&t Qt"), this);
quit = new QAction(tr("&Quit"), this);