diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2016-04-09 18:16:48 +0200 |
---|---|---|
committer | Felix Rohrbach <fxrh@gmx.de> | 2016-04-09 18:16:48 +0200 |
commit | 32bd6ce054a77d760d98eb3f13fa58704980924b (patch) | |
tree | 154e4a2dab33c79277afddf73f2a34e8cbbe947b | |
parent | 123f528d5bb7ce72da34c703232f2aa0e556244f (diff) | |
parent | 8ddbecbfeac5d35d254a642d24beeb344c33babd (diff) | |
download | libquotient-32bd6ce054a77d760d98eb3f13fa58704980924b.tar.gz libquotient-32bd6ce054a77d760d98eb3f13fa58704980924b.zip |
Merge pull request #1 from davidar/master
Make Connection parent of Room.
-rw-r--r-- | room.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -65,7 +65,7 @@ class Room::Private: public QObject }; Room::Room(Connection* connection, QString id) - : d(new Private(this)) + : QObject(connection), d(new Private(this)) { d->id = id; d->connection = connection; @@ -78,6 +78,7 @@ Room::Room(Connection* connection, QString id) Room::~Room() { + qDebug() << "deconstructing room " << this; delete d; } |