Sorry ... I delete the original post by error.
I explain that I had a button to add data to a model and it did not change
Solved:
The problem is :
I had :
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir));
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir));
To copy to clipboard, switch view to plain text mode
And it must be :
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir()));
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir()));
To copy to clipboard, switch view to plain text mode
I dont understand how has been possible that the last code has not launched an error ?
Bookmarks