Last edited by schnitzel; 28th February 2010 at 06:14.
No, it doesn't work with qt creator. It crashes with "exited with code -1073741819"
I tried both debug & release.
Last edited by space_otter; 28th February 2010 at 06:36.
It has 24 files so far. It was working before (and it was cool too!) but something made it unhappy, and I can't put my finger on it. I'm guessing a change to the source code may have caused the error, In which case I'm in a real fix. I'll keep trying.
Ha! I tried using the Qt Creator debugger and I'm getting some meaningful results. If I fix this I'll post again.
totally different issue then and probably it is better if you open a new thread
Qt Code:
this->setObjectName(name); this->mStack = new Stack(ui->decimalPlacesBox->value(), ui->accuracyBox->value()); connect(ui->accuracyBox, SIGNAL(valueChanged(int)), mStack, SLOT(setAccuracy(int))); ui->setupUi(this); // should come first, was causing segmentation fault. ui->stackView->setModel(mStack);To copy to clipboard, switch view to plain text mode
Qt Code:
return index.parent(); }To copy to clipboard, switch view to plain text mode
The previous caused an infinite loop. I blame this on the lack of clear documentation on QAbstractItemModel.
Bookmarks