change order between delete d and assign property to parent d

probably nothing changes
This commit is contained in:
Jaime Torres 2012-10-10 19:09:29 +02:00
parent fe259f19bb
commit a4f54d65dd

View File

@ -145,10 +145,10 @@ Containment::Containment(const QString &packagePath, uint appletId, const QVaria
Containment::~Containment()
{
delete d;
// Applet touches our dptr if we are a containment and is the superclass (think of dtors)
// so we reset this as we exit the building
Applet::d->isContainment = false;
delete d;
}
void Containment::init()