summaryrefslogtreecommitdiffstats
path: root/src/tools/uic/main.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-06 10:52:22 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-11 09:05:38 +0200
commit2f84ec4bcd35855e33140d8c985d640d8ece62bc (patch)
treef89a73969c410f4e892ce99bfc4033778df172d5 /src/tools/uic/main.cpp
parent38f1a36f608f729f47d880eb8389e88159bda7a4 (diff)
uic: Introduce nullptr
Apply Fixits by Qt Creator. Change-Id: Ic2d65b2604d1d71d910773e02bcdf2466f49e52c Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/tools/uic/main.cpp')
-rw-r--r--src/tools/uic/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/uic/main.cpp b/src/tools/uic/main.cpp
index 166fe78ff7..439789d221 100644
--- a/src/tools/uic/main.cpp
+++ b/src/tools/uic/main.cpp
@@ -137,7 +137,7 @@ int runUic(int argc, char *argv[])
return !driver.printDependencies(inputFile);
}
- QTextStream *out = 0;
+ QTextStream *out = nullptr;
QFile f;
if (!driver.option().outputFile.isEmpty()) {
f.setFileName(driver.option().outputFile);