Hello,

If you have QMap of QList's like this
Qt Code:
  1. QMap<int,QList<int> > myMap;
  2. myMap.insert(a,QList<int>())
  3. myMap[a].append(b);
  4. myMap[a].append(c);
To copy to clipboard, switch view to plain text mode 
and you clear QMap:
Qt Code:
  1. myMap.clear()
To copy to clipboard, switch view to plain text mode 
are elements of inner QList cleared, or you should iterate through QMap first and clear QLlist ?

best regards
Marek