summaryrefslogtreecommitdiffstats
path: root/util/corelib
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2020-02-12 14:09:29 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2020-02-20 21:41:54 +0100
commit4f076db3d2e2e27cc56029fe878056ee79def56f (patch)
tree739432aca7f3f63929f16b6bc56943bea26e8182 /util/corelib
parentba50d27e7624cdfe90124b393576020de7608332 (diff)
Remove QUrl::topLevelDomain
And move the actual implementation from corelib/io to network/kernel sub-module. Fixes: QTBUG-80308 Change-Id: I554b05bae3552c68e1e1a405c169366ee19120b2 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'util/corelib')
-rw-r--r--util/corelib/qurl-generateTLDs/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/corelib/qurl-generateTLDs/main.cpp b/util/corelib/qurl-generateTLDs/main.cpp
index c03da98510..1e104e99c2 100644
--- a/util/corelib/qurl-generateTLDs/main.cpp
+++ b/util/corelib/qurl-generateTLDs/main.cpp
@@ -191,6 +191,6 @@ int main(int argc, char **argv)
outFile.write(chunks.join(", ").toLatin1());
outFile.write("};\n");
outFile.close();
- printf("Data generated to %s - now revise qtbase/src/corelib/io/qurltlds_p.h to use this data.\n", argv[2]);
+ printf("Data generated to %s - now revise qtbase/src/network/kernel/qurltlds_p.h to use this data.\n", argv[2]);
return 0;
}