tonnot
16th March 2011, 18:33
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));
And it must be :
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir()));
I dont understand how has been possible that the last code has not launched an 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));
And it must be :
connect (botonadd,SIGNAL(clicked()),this,SLOT(anadir()));
I dont understand how has been possible that the last code has not launched an error ?