Quote Originally Posted by tbscope View Post
Qt Code:
  1. Node *node;
  2. node->setText(QObject::tr("Node %1").arg(seqNumber +1));
To copy to clipboard, switch view to plain text mode 

This is wrong and will crash. You need to initialise node first.
Node *node = new Node;
If i try to initialize *node, I get an error that says invalid use of incomplete type Node.