diff options
author | Frederik Schwarzer <schwarzerf@gmail.com> | 2009-07-06 11:47:01 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-07-06 12:01:25 (GMT) |
commit | 33604fb02fa463f36fa78e515bb42a34a746f0f2 (patch) | |
tree | 63b0400e0f1b4167999f30a6fe9a618e176c3b75 /src/tools/uic/uic.cpp | |
parent | a59fbee567571827c3a1505b125b9dfb3788c79e (diff) | |
download | Qt-33604fb02fa463f36fa78e515bb42a34a746f0f2.zip Qt-33604fb02fa463f36fa78e515bb42a34a746f0f2.tar.gz Qt-33604fb02fa463f36fa78e515bb42a34a746f0f2.tar.bz2 |
general wording change for some file type names
- .ts file -> TS file
- .qm file -> QM file
- .ui file -> UI file
+ a handfull of typos I stumbled over
Merge-request: 802
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/tools/uic/uic.cpp')
-rw-r--r-- | src/tools/uic/uic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/uic/uic.cpp b/src/tools/uic/uic.cpp index 1c6e3a5..bbb3af7 100644 --- a/src/tools/uic/uic.cpp +++ b/src/tools/uic/uic.cpp @@ -137,12 +137,12 @@ void Uic::writeCopyrightHeader(DomUI *ui) out << "/*\n" << comment << "\n*/\n\n"; out << "/********************************************************************************\n"; - out << "** Form generated from reading ui file '" << QFileInfo(opt.inputFile).fileName() << "'\n"; + out << "** Form generated from reading UI file '" << QFileInfo(opt.inputFile).fileName() << "'\n"; out << "**\n"; out << "** Created: " << QDateTime::currentDateTime().toString() << "\n"; out << "** " << QString::fromLatin1("by: Qt User Interface Compiler version %1\n").arg(QLatin1String(QT_VERSION_STR)); out << "**\n"; - out << "** WARNING! All changes made in this file will be lost when recompiling ui file!\n"; + out << "** WARNING! All changes made in this file will be lost when recompiling UI file!\n"; out << "********************************************************************************/\n\n"; } |