summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDon Sanders <don.sanders@nokia.com>2011-06-12 19:03:12 +0300
committerDon Sanders <don.sanders@nokia.com>2011-06-12 19:03:12 +0300
commitcbec8786e31f10d3edbaa4c6b4a97e71522a8c84 (patch)
treece5e1f5af94ff35a214cd5ff40daf94c9259e168
parentf80be63b4a5b924afd8282966eaf6e0fa567411b (diff)
Remove debug output.
-rw-r--r--src/libraries/qmfclient/support/qcopchannel.cpp4
-rw-r--r--src/libraries/qmfclient/support/qcopchannel_p.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/libraries/qmfclient/support/qcopchannel.cpp b/src/libraries/qmfclient/support/qcopchannel.cpp
index 079369f9..4a1ea103 100644
--- a/src/libraries/qmfclient/support/qcopchannel.cpp
+++ b/src/libraries/qmfclient/support/qcopchannel.cpp
@@ -713,8 +713,6 @@ struct QCopPacketHeader
int forwardToLength;
};
-int QCopClient::clientsCount = 0;
-
QCopClient::QCopClient(QIODevice *device, QCopLocalSocket *socket)
: QObject()
{
@@ -737,7 +735,6 @@ QCopClient::QCopClient(QIODevice *device, bool isServer)
void QCopClient::init()
{
- qMailLog(Messaging) << "QCopClient count" << ++clientsCount << "this" << this;
if (server || !socket)
connectSignals();
@@ -765,7 +762,6 @@ void QCopClient::init()
QCopClient::~QCopClient()
{
- qMailLog(Messaging) << "~QCopClient count" << --clientsCount << "this" << this;
if (disconnectHandler) {
delete disconnectHandler;
disconnectHandler = 0;
diff --git a/src/libraries/qmfclient/support/qcopchannel_p.h b/src/libraries/qmfclient/support/qcopchannel_p.h
index 4390b8d9..abd9cf96 100644
--- a/src/libraries/qmfclient/support/qcopchannel_p.h
+++ b/src/libraries/qmfclient/support/qcopchannel_p.h
@@ -207,7 +207,6 @@ private:
bool connecting;
bool reconnecting;
int channelCount;
- static int clientsCount;
void detachAll();
void detach(const QString& ch);