What does it mean this error
-
That's not what I was saying.
You are writing code that's difficult to read and understand. e.g. there's no need to call
cliente.rosterManager().getPresence(barejid,resource).type()
several time. Just put the returned value in a variable and test that one.Same goes for the QTreeWidgetItem, you need to get the one you are interested in and then only work with that one. This will avoid to have
ui->arbolConectados->findItems(barejid,Qt::MatchExactly)[0]
through out your method@SGaist Ok i saved the result of presence in a var this works. But when i create a new qtreewidget, this is the code recoded:
void MainWindow::cambioRoster(QString barejid, QString resource) { if(cliente.rosterManager().isRosterReceived() == true) { QXmppPresence::Type a = cliente.rosterManager().getPresence(barejid,resource).type(); QTreeWidgetItem *element = new QTreeWidgetItem(ui->arbolConectados->findItems(barejid,Qt::MatchExactly)[0]); QIcon online; online.addFile(":/icons/user-online.png"); if(ui->arbolConectados->findItems(barejid,Qt::MatchExactly).size() == 0) { QTreeWidgetItem *item = new QTreeWidgetItem(); item->setText(0,barejid); ui->arbolConectados->addTopLevelItem(item); } if(a == QXmppPresence::Available) { QTreeWidgetItem *item = new QTreeWidgetItem(); item->setText(0,resource); item->setIcon(0,online); element->addChild(item); }else{ int i=0; while(i<element->childCount() && element->child(i)->text(0) != resource) //busqueda lineal { i++; } element->takeChild(i); if(element->childCount() == 0) { online.addFile(":/icons/user-offline.png"); } } element->setIcon(0,online); } }
Show me the before error:
https://i.imgsafe.org/13d50793d8.pngI think because return me a element of one list?
-
Run your application through the debugger, you'll see what triggers that.
-
@SGaist i think in one qtreewidgetitem i can't find element. So i can't use qtreewidget because if i use show me this error ASSERT failure in QList<T>::operator[]: "index out of range", file C:\Qt\5.5\msvc2013_static\include\QtCore/qlist.h, line 545
And when i run with debug show me this:
https://i.imgsafe.org/35f6161b6a.pngI can't use mode debugger ->> this is other problem that i had i dont know why show me this.
But my problem basically is i need to check all time because the values change ? you understand so if i save in one var i dont know the actual value i think . Or i'm wrong?
-
As silly as it may sound: don't access it when you know it's not there.
-
Because you're likely using Visual Studio and you didn't install its debugger.
One simple way to avoid that kind of crash is to check the list size before accessing any of its element.
-
Because you're likely using Visual Studio and you didn't install its debugger.
One simple way to avoid that kind of crash is to check the list size before accessing any of its element.
-
Did you grab the debugger from Microsoft web site ? If so and you didn't modify the defaults when installing, it will be automatically detected.
-
Did you grab the debugger from Microsoft web site ? If so and you didn't modify the defaults when installing, it will be automatically detected.
-
Which version of Visual Studio and and Windows are you using ?
-
What is your exact setup ?
You wrote that you were using Qt for VS2013 and now you are looking for VS2015 ? You know that you can't mix and match libraries built with different version of Visual Studio ? These compilers are not compatible one with the other.
-
What is your exact setup ?
You wrote that you were using Qt for VS2013 and now you are looking for VS2015 ? You know that you can't mix and match libraries built with different version of Visual Studio ? These compilers are not compatible one with the other.
-
What is your exact setup ?
You wrote that you were using Qt for VS2013 and now you are looking for VS2015 ? You know that you can't mix and match libraries built with different version of Visual Studio ? These compilers are not compatible one with the other.