diff options
| author | Ahmad Samir <a.samirh78@gmail.com> | 2023-01-29 11:12:12 +0200 |
|---|---|---|
| committer | Volker Hilsheimer <volker.hilsheimer@qt.io> | 2023-03-15 20:25:57 +0000 |
| commit | f325bdacb6d236f419f9a8f76f60cea2b58f5fb5 (patch) | |
| tree | 352d2b8b7d0351ebe4c68b70902edb9bdecf4865 /src/corelib/io/qresource.cpp | |
| parent | 2ad63a097596c7f5fc3f165f24bfbbd7af7c5ef3 (diff) | |
Replace ushort*/uint* with char16_t*/char32_t* in private API [1]
Task-number: QTBUG-110403
Pick-to: 6.5
Change-Id: Ie20a831f22212d56659cf3c6940d17134ab5f2c5
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qresource.cpp')
| -rw-r--r-- | src/corelib/io/qresource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qresource.cpp b/src/corelib/io/qresource.cpp index a0759bd1b5c..a3237f25bc0 100644 --- a/src/corelib/io/qresource.cpp +++ b/src/corelib/io/qresource.cpp @@ -753,7 +753,7 @@ inline QString QResourceRoot::name(int node) const ret.resize(name_length); QChar *strData = ret.data(); - qFromBigEndian<ushort>(names + name_offset, name_length, strData); + qFromBigEndian<char16_t>(names + name_offset, name_length, strData); return ret; } |
