diff options
| author | Marc Mutz <marc.mutz@qt.io> | 2022-08-17 09:45:55 +0200 |
|---|---|---|
| committer | Marc Mutz <marc.mutz@qt.io> | 2022-08-17 17:02:27 +0200 |
| commit | 634a76eb321c50bc60929f4b32b880a86a121f7d (patch) | |
| tree | 621b58a64c587a6b7d931b8c965811cedadb5b05 | |
| parent | 74d6ca276830969b151e168d0fd8a26ac4ec361c (diff) | |
[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 <sona.kurazyan@qt.io>
| -rw-r--r-- | src/corelib/io/qabstractfileengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
