summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfileinfo.h
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-07-16 14:21:53 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-08-07 17:44:51 +0200
commitfe6a1d34dc2e5d24d55fac67657ffe760e2e3e51 (patch)
treef50f85965552dab9b5f3c4e90561af7b8d1b5c24 /src/corelib/io/qfileinfo.h
parent4ef723c82db46689145a9d30d8d246cf8686bd25 (diff)
QFileInfo: purge deprecated API
Since 5.10: created() Since 5.13: readLink() Change-Id: I9722f81750dd92315a67a1c38df41a95ae63e0db Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/io/qfileinfo.h')
-rw-r--r--src/corelib/io/qfileinfo.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/corelib/io/qfileinfo.h b/src/corelib/io/qfileinfo.h
index d7cc51c7df..aea0927310 100644
--- a/src/corelib/io/qfileinfo.h
+++ b/src/corelib/io/qfileinfo.h
@@ -151,10 +151,6 @@ public:
bool isRoot() const;
bool isBundle() const;
-#if QT_DEPRECATED_SINCE(5, 13)
- QT_DEPRECATED_X("Use QFileInfo::symLinkTarget() instead")
- QString readLink() const;
-#endif
QString symLinkTarget() const;
#if QT_CONFIG(cxx17_filesystem)
std::filesystem::path filesystemSymLinkTarget() const
@@ -172,10 +168,6 @@ public:
qint64 size() const;
// ### Qt6: inline these functions
-#if QT_DEPRECATED_SINCE(5, 10)
- QT_DEPRECATED_X("Use either birthTime() or metadataChangeTime()")
- QDateTime created() const;
-#endif
QDateTime birthTime() const;
QDateTime metadataChangeTime() const;
QDateTime lastModified() const;