rename "QT" to "Qt"

This commit is contained in:
XhmikosR 2012-09-09 14:51:34 +03:00 committed by Daniel Marjamäki
parent bd734a9610
commit d69293a929
3 changed files with 3 additions and 3 deletions

View File

@ -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" (

View File

@ -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) {

View File

@ -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