From d69293a929d22bba8b519f9d299e80278b9cb1ed Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 9 Sep 2012 14:51:34 +0300 Subject: [PATCH] rename "QT" to "Qt" --- build.bat | 2 +- gui/mainwindow.cpp | 2 +- gui/mainwindow.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.bat b/build.bat index 9aa6b7d52..11c30b1ee 100644 --- a/build.bat +++ b/build.bat @@ -15,7 +15,7 @@ REM - run tests too if "%1" == "" goto help -REM QT prompt sets QMAKESPEC +REM Qt prompt sets QMAKESPEC if "%QMAKESPEC%" == "" ( REM parse qmakespec to see if it's some msvc if "%QMAKESPEC:~6,4%" == "msvc" ( diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 558958522..b3dd3ed17 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -348,7 +348,7 @@ QStringList MainWindow::SelectFilesToCheck(QFileDialog::FileMode mode) // NOTE: we use QFileDialog::getOpenFileNames() and // QFileDialog::getExistingDirectory() because they show native Windows - // selection dialog which is a lot more usable than QT:s own dialog. + // selection dialog which is a lot more usable than Qt:s own dialog. if (mode == QFileDialog::ExistingFiles) { SelectFilesDialog dialog(this); if (dialog.exec() == QDialog::Accepted) { diff --git a/gui/mainwindow.h b/gui/mainwindow.h index b981b6e04..33daf1007 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -324,7 +324,7 @@ protected: /** * @brief Select files/or directory to check. * Helper function to open a dialog to ask user to select files or - * directory to check. Use native dialogs instead of QT:s own dialogs. + * directory to check. Use native dialogs instead of Qt:s own dialogs. * * @param mode Dialog open mode (files or directories) * @return QStringList of files or directories that were selected to check