I'm doing:
QMap<QString,Qt::CheckState>::iterator beg = data_.begin();//here data_ is of type QMap<QString,Qt::CheckState>
and qt tells me:
error: conversion from 'QMap::const_iterator' to non-scalar type 'QMap::iterator' requested
Why? I didn't asked for cbegin, so what's the story with this?
data_-- is itconst? – Kerrek SB Dec 9 '11 at 18:13data_is const at this point in time, so the const version ofbegin()will be called. – Moo-Juice Dec 9 '11 at 18:14