tools/qtconfig/mainwindow.cpp
branchRCL_3
changeset 4 3b1da2848fc7
parent 0 1918ee327afb
child 30 5dc02b23752f
equal deleted inserted replaced
3:41300fa6a67c 4:3b1da2848fc7
     1 /****************************************************************************
     1 /****************************************************************************
     2 **
     2 **
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4 ** All rights reserved.
     4 ** All rights reserved.
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     6 **
     6 **
     7 ** This file is part of the tools applications of the Qt Toolkit.
     7 ** This file is part of the tools applications of the Qt Toolkit.
     8 **
     8 **
   997 void MainWindow::helpAbout()
   997 void MainWindow::helpAbout()
   998 {
   998 {
   999     QMessageBox box(this);
   999     QMessageBox box(this);
  1000     box.setText(tr("<h3>%1</h3>"
  1000     box.setText(tr("<h3>%1</h3>"
  1001                    "<br/>Version %2"
  1001                    "<br/>Version %2"
  1002                    "<br/><br/>Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).")
  1002                    "<br/><br/>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).")
  1003                    .arg(tr("Qt Configuration")).arg(QLatin1String(QT_VERSION_STR)));
  1003                    .arg(tr("Qt Configuration")).arg(QLatin1String(QT_VERSION_STR)));
  1004     box.setWindowTitle(tr("Qt Configuration"));
  1004     box.setWindowTitle(tr("Qt Configuration"));
  1005     box.setIcon(QMessageBox::NoIcon);
  1005     box.setIcon(QMessageBox::NoIcon);
  1006     box.exec();
  1006     box.exec();
  1007 }
  1007 }