0

tw_topic という QTableWidget があります。空ではありません。別の関数では、アイテムのテキストが必要です。

コード :

for(int i = ui->tw_topic->rowCount(); i >= 0; i--)
{
    //should return the first item of the first column
    const QString itm = ui->tw_topic->item(i, 0)->text();
    //Here I will do some other stuff...
}

どういうわけか itm が初期化される時点でクラッシュしますが、その理由はわかりません。

4

1 に答える 1