Don't abuse organization domain for website in AboutDialog

This commit is contained in:
Martchus 2019-07-20 20:16:44 +02:00
parent ad5ef353ff
commit 53aa56108c
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ void MainWindow::showSettingsDialog()
void MainWindow::showAboutDialog()
{
if (!m_aboutDlg) {
m_aboutDlg = new AboutDialog(this, tr("A simple password store using AES-256-CBC encryption via OpenSSL."),
m_aboutDlg = new AboutDialog(this, QStringLiteral(APP_URL), tr("A simple password store using AES-256-CBC encryption via OpenSSL."),
QImage(":/icons/hicolor/128x128/apps/passwordmanager.png"));
}
m_aboutDlg->show();