diff options
| author | Maurice Kalinowski <maurice.kalinowski@qt.io> | 2020-08-13 15:36:09 +0200 |
|---|---|---|
| committer | Maurice Kalinowski <maurice.kalinowski@qt.io> | 2020-08-13 15:41:09 +0200 |
| commit | d22a8041da6dc50f0f023adb52967bf68d5cda2e (patch) | |
| tree | 742263d0dc61509ca68bda74feb934cf294c6bd1 | |
| parent | 72a6236185fe6884b7b30c4f348a19e2e7603cba (diff) | |
| download | qttools-d22a8041da6dc50f0f023adb52967bf68d5cda2e.tar.gz | |
Fix compilation after QMultiMap changes
Change-Id: Ib3bf3e1ce25a35facd959e25af3ae997191bc229
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
| -rw-r--r-- | src/linguist/shared/qm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linguist/shared/qm.cpp b/src/linguist/shared/qm.cpp index 3c047bc8d..5f0b0335f 100644 --- a/src/linguist/shared/qm.cpp +++ b/src/linguist/shared/qm.cpp @@ -378,7 +378,7 @@ void Releaser::squeeze(TranslatorSaveMode mode) t << quint16(0); // the entry at offset 0 cannot be used uint upto = 2; - QMap<int, QByteArray>::const_iterator entry = hashMap.constBegin(); + QMultiMap<int, QByteArray>::const_iterator entry = hashMap.constBegin(); while (entry != hashMap.constEnd()) { int i = entry.key(); hTable[i] = quint16(upto >> 1); |
