diff options
author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-12 12:51:27 +0200 |
---|---|---|
committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-12 12:51:27 +0200 |
commit | afafc8ff96e486e9f903c643945832bee11659a1 (patch) | |
tree | 4822c9fbaa015fe08888f345badc60cc0cc56411 /src | |
parent | 7b1fa0b22598305b8c50fda543131d2d14d1df63 (diff) | |
download | RWA.Support.DesktopApp-afafc8ff96e486e9f903c643945832bee11659a1.tar.gz RWA.Support.DesktopApp-afafc8ff96e486e9f903c643945832bee11659a1.tar.bz2 RWA.Support.DesktopApp-afafc8ff96e486e9f903c643945832bee11659a1.zip |
Make RWAHost object creation silent again.
Diffstat (limited to 'src')
-rw-r--r-- | src/RWAHost.cpp | 4 | ||||
-rw-r--r-- | src/RWAHost.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/RWAHost.cpp b/src/RWAHost.cpp index cc25b57..f31dc60 100644 --- a/src/RWAHost.cpp +++ b/src/RWAHost.cpp @@ -30,10 +30,10 @@ RWAHost::RWAHost(QString uuid, QString alias, QString url) { assert(alias != ""); assert(url != ""); - qDebug() << "Created new RWAHost object.\n\t" + /*qDebug() << "Created new RWAHost object.\n\t" << QString("uuid: '%0'").arg(uuid) << "\n\t" << QString("alias: '%0'").arg(alias) << "\n\t" - << QString("url: '%0'").arg(url); + << QString("url: '%0'").arg(url);*/ _url = url; _alias = alias; diff --git a/src/RWAHost.h b/src/RWAHost.h index 58b6d45..cd3b1ce 100644 --- a/src/RWAHost.h +++ b/src/RWAHost.h @@ -37,6 +37,7 @@ class RWAHost : public QObject { public: RWAHost(QString uuid = "", QString alias = "", QString url = ""); + RWAHost(const RWAHost&); private: QString _uuid; |