Hi,
I'm creating a form by:
and in application:Code:
{ layout->addWidget(TwNew,0,0,1,1); base->show(); this->setCentralWidget(base); this->move(((QApplication::desktop()->width()-this->width())/2),((QApplication::desktop()->height()-this->height())/2)); }
Code:
OFormPusty = new FormPusty(); OFormPusty->show();
and I've discovered there is no free memory in my app :/ How to add a free memory, I've a several forms whith alocated almost 10Mb :/ when I'm closing a form memeory is still use :/
ofcourse I've :
Code:
FormPusty::~FormPusty(){ qDebug()<<"ttt"; delete base ; }
but is noting happend :/

