summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Volz <andreas@er00923n.fritz.box>2011-11-26 23:40:27 +0100
committerAndreas Volz <andreas@er00923n.fritz.box>2011-11-26 23:40:27 +0100
commiteaeeea61d31fe2be2d9206c0d3d602f38663dbfc (patch)
tree8d8b825dbdfb007e3a7dc0651d3f30d838b03337
parente8262c2d4f0eab9e111ab59a63c57659d4b52f56 (diff)
downloaddbus-c++-eaeeea61d31fe2be2d9206c0d3d602f38663dbfc.tar.gz
[PATCH 01/15] Explicit Connection::Private's attributes
From: qolyester@green-communications.fr
-rw-r--r--src/connection.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp
index e1eec7e..73b3e6d 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -42,12 +42,13 @@
using namespace DBus;
Connection::Private::Private(DBusConnection *c, Server::Private *s)
-: conn(c) , dispatcher(0), server(s)
+: conn(c) , dispatcher(NULL), server(s)
{
init();
}
Connection::Private::Private(DBusBusType type)
+ : dispatcher(NULL), server(NULL)
{
InternalError e;