Доброго времени суток! Первый раз имею дело с этим контейнером. Написал функцию обхода контейнера, а Qt ругается.
void AlbumContentDialog::showNewPhoto(QTreeWidgetItem* item, int level)
{
QListIterator<Photo> i(photoList);
while(i.hasNext()) {
if (i.next().title() == item->text(level)) {
photoView->setText("<img src = "+i.next().path()+">");
}
}
}
/home/oleg/projects/photo_collection/albumcontentdialog.cpp:47: error: passing ‘const Photo’ as ‘this’ argument of ‘QString Photo::title()’ discards qualifiers
/home/oleg/projects/photo_collection/albumcontentdialog.cpp:48: error: passing ‘const Photo’ as ‘this’ argument of ‘QString Photo::path()’ discards qualifiers