walletManager: coding conventions

Signed-off-by: Jaquee <jaquee.monero@gmail.com>
This commit is contained in:
Jaquee
2016-11-27 00:16:09 +01:00
parent 0ae3d67750
commit 01549a3040
5 changed files with 24 additions and 27 deletions

View File

@@ -11,7 +11,7 @@ class DaemonManager : public QObject
public:
static DaemonManager * instance(QStringList args);
static DaemonManager * instance(const QStringList *args);
Q_INVOKABLE bool start();
Q_INVOKABLE bool stop();
@@ -34,7 +34,7 @@ private:
explicit DaemonManager(QObject *parent = 0);
static DaemonManager * m_instance;
static QStringList clArgs;
static QStringList m_clArgs;
QProcess *m_daemon;
bool initialized = false;