aboutsummaryrefslogtreecommitdiff
path: root/src/qt/paymentserver.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-24 16:16:39 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-24 16:16:39 +0200
commit9195e0bed248a2c2796f90e7fcd4b40738cc5617 (patch)
treed6245c1fa0195ca3ef89c8bb22b69a3df9387560 /src/qt/paymentserver.cpp
parentfaf923f06ad721846c35bcc76a7ed51cf03c318f (diff)
downloadbitcoin-9195e0bed248a2c2796f90e7fcd4b40738cc5617.tar.xz
paymentserver: init all class members in constructor
Diffstat (limited to 'src/qt/paymentserver.cpp')
-rw-r--r--src/qt/paymentserver.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp
index af75d6b4e5..3b38758fbb 100644
--- a/src/qt/paymentserver.cpp
+++ b/src/qt/paymentserver.cpp
@@ -250,7 +250,12 @@ bool PaymentServer::ipcSendCommandLine(int argc, char* argv[])
return fResult;
}
-PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) : QObject(parent), saveURIs(true)
+PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) :
+ QObject(parent),
+ saveURIs(true),
+ uriServer(0),
+ netManager(0),
+ optionsModel(0)
{
// Verify that the version of the library that we linked against is
// compatible with the version of the headers we compiled against.