diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-24 16:16:39 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-24 16:16:39 +0200 |
commit | 9195e0bed248a2c2796f90e7fcd4b40738cc5617 (patch) | |
tree | d6245c1fa0195ca3ef89c8bb22b69a3df9387560 /src | |
parent | faf923f06ad721846c35bcc76a7ed51cf03c318f (diff) |
paymentserver: init all class members in constructor
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/paymentserver.cpp | 7 |
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. |