It seems that the following is to deep for the debugger in Qt even though the program uses it without problem
typedef QMap <int, QStringList> day2FileNameType;
typedef QMap <int, day2FileNameType> month2day2FileNameType;
typedef QMap <int, month2day2FileNameType> year2month2day2FileNameType;
year2month2day2FileNameType y2m2d2f;
now the first 2 typeDefs work okay with the debugger but the third one retrieving data for watch view (over 100 pending request)
Is it wrong for me to try and use such a typedef as year2month2day2FileNameType?