:-1: error: Exception at 0x778f7ef8, code: 0xc0000138: , flags=0x1 (execution cannot be continued) (first chance) - Destructor
Hi,

i setup destructor to clear the objects and I am receiving this error.

:-1: error: Exception at 0x778f7ef8, code: 0xc0000138: , flags=0x1 (execution cannot be continued) (first chance)



Code snippets:



HomeController .h
-------
class HomeController : public QObject

{
Q_OBJECT

public:

explicit HomeController (QObject *parent=0);

~HomeController();
};


HomeController::~HomeController()

{


}


Thanks in advance.