Re: [Interest] QMultiMap as QVariant

2023-04-15 Thread Thomas Sevaldrud
> On 15 Apr 2023, at 12:07, Volker Hilsheimer wrote: > >> On 14 Apr 2023, at 23:11, Thomas Sevaldrud wrote: >> >> Hi, in my code I have a hierarchical QMultiMap of QVariants, where a map >> value can be a new multimap of variants. This does not compile anymore in Qt >> 6. I.e. something like

Re: [Interest] QMultiMap as QVariant

2023-04-15 Thread Volker Hilsheimer via Interest
> On 14 Apr 2023, at 23:11, Thomas Sevaldrud wrote: > > Hi, in my code I have a hierarchical QMultiMap of QVariants, where a map > value can be a new multimap of variants. This does not compile anymore in Qt > 6. I.e. something like this: > > QMultiMap varMap; > QMultiMap subMap; >

[Interest] QMultiMap as QVariant

2023-04-14 Thread Thomas Sevaldrud
Hi, in my code I have a hierarchical QMultiMap of QVariants, where a map value can be a new multimap of variants. This does not compile anymore in Qt 6. I.e. something like this: QMultiMap varMap; QMultiMap subMap; varMap.insert("key", subMap); // Compile error here, sinc