From 634a76eb321c50bc60929f4b32b880a86a121f7d Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Wed, 17 Aug 2022 09:45:55 +0200 Subject: [PATCH] [docs] QAbstractItemEngine: fix signature of seek() It takes qint64, not int. This is not public documentation, so not picking to older branches. Task-number: QTBUG-103525 Change-Id: I4303af326bb6054ae0cccd87aa337354ad11209b Reviewed-by: Sona Kurazyan --- src/corelib/io/qabstractfileengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/io/qabstractfileengine.cpp b/src/corelib/io/qabstractfileengine.cpp index c8f21c5b4cd..9f35933af1d 100644 --- a/src/corelib/io/qabstractfileengine.cpp +++ b/src/corelib/io/qabstractfileengine.cpp @@ -433,7 +433,7 @@ bool QAbstractFileEngine::seek(qint64 pos) Returns \c true if the file is a sequential access device; returns false if the file is a direct access device. - Operations involving size() and seek(int) are not valid on + Operations involving size() and seek(qint64) are not valid on sequential devices. */ bool QAbstractFileEngine::isSequential() const