aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-15 10:56:18 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-09-15 10:56:18 +0900
commit53a941afe548be49585aadda336c0e4c05ff3ff1 (patch)
treea9e4ae1b48b1dd111d857eda723882c5452f62d6
parentc8a34813a551752bf647a0c91a6ee37c95e50251 (diff)
downloadlibquotient-53a941afe548be49585aadda336c0e4c05ff3ff1.tar.gz
libquotient-53a941afe548be49585aadda336c0e4c05ff3ff1.zip
Replace an array of room deconstruction log lines with a single connection deconstruction log line
-rw-r--r--connection.cpp1
-rw-r--r--room.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/connection.cpp b/connection.cpp
index 1bd8e292..aebe7631 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -78,6 +78,7 @@ Connection::Connection()
Connection::~Connection()
{
+ qDebug() << "deconstructing connection object for" << d->userId;
delete d;
}
diff --git a/room.cpp b/room.cpp
index 5b390cea..3683781b 100644
--- a/room.cpp
+++ b/room.cpp
@@ -111,7 +111,6 @@ Room::Room(Connection* connection, QString id)
Room::~Room()
{
- qDebug() << "deconstructing room" << id();
delete d;
}