How to check object has created with new ? I tried like this, but not work 
Tahede *_tahede;
//_tahede=new Tahede(this);
if (_tahede)
{
qDebug() << "Created before";
_tahede->exec();
}
else
{
qDebug() << "Create now";
_tahede=new Tahede(this);
_tahede->exec();
}
Tahede *_tahede;
//_tahede=new Tahede(this);
if (_tahede)
{
qDebug() << "Created before";
_tahede->exec();
}
else
{
qDebug() << "Create now";
_tahede=new Tahede(this);
_tahede->exec();
}
To copy to clipboard, switch view to plain text mode
Application output window only give me message...
Created before
QDialog::exec: Recursive call detected
Bookmarks