diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2009-05-20 07:00:37 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-05-20 07:00:37 (GMT) |
commit | c51204359b7c9c2e63e4101f771d07774b921fee (patch) | |
tree | 325cc4539a237c1c5f8e545bd79dadef66ddab2f /tools/linguist | |
parent | e9dec649afc2e513354c79f6e38ca53b6943cccc (diff) | |
download | Qt-c51204359b7c9c2e63e4101f771d07774b921fee.zip Qt-c51204359b7c9c2e63e4101f771d07774b921fee.tar.gz Qt-c51204359b7c9c2e63e4101f771d07774b921fee.tar.bz2 |
Remove unused variables from various About dialogs.
Reviewed-by: Trust Me
Diffstat (limited to 'tools/linguist')
-rw-r--r-- | tools/linguist/linguist/mainwindow.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/linguist/linguist/mainwindow.cpp b/tools/linguist/linguist/mainwindow.cpp index 5157fbe..921b8b6 100644 --- a/tools/linguist/linguist/mainwindow.cpp +++ b/tools/linguist/linguist/mainwindow.cpp @@ -1342,17 +1342,13 @@ void MainWindow::about() QString version = tr("Version %1"); version = version.arg(QLatin1String(QT_VERSION_STR)); - // TODO: Remove this variable for 4.6.0. Must keep this way for 4.5.x due to string freeze. - QString edition; - box.setText(tr("<center><img src=\":/images/splash.png\"/></img><p>%1</p></center>" "<p>Qt Linguist is a tool for adding translations to Qt " "applications.</p>" - "<p>%2</p>" "<p>Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)." "</p><p>The program is provided AS IS with NO WARRANTY OF ANY KIND," " INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A" - " PARTICULAR PURPOSE.</p>").arg(version).arg(edition)); + " PARTICULAR PURPOSE.</p>").arg(version)); box.setWindowTitle(QApplication::translate("AboutDialog", "Qt Linguist")); box.setIcon(QMessageBox::NoIcon); |