aboutsummaryrefslogtreecommitdiffstats
path: root/src/remotesettings
diff options
context:
space:
mode:
authorEgor Nemtsev <enemtsev@luxoft.com>2019-05-17 18:05:55 +0300
committerEgor Nemtsev <enemtsev@luxoft.com>2019-05-17 15:08:31 +0000
commit4bab67e8ce8ffb552be46c2291ec17e35a1ebe71 (patch)
tree6fb5582beada98c2ddfe60ce71709f5fa1298a46 /src/remotesettings
parent952d014349e4df48bf7567fd9b53ec7857acaaf7 (diff)
[companionapp] rename Neptune Control to Neptune Companion app
Change-Id: I59a65d96ad009b9d3130416a66fb067a2a9232c6 Reviewed-by: Bramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>
Diffstat (limited to 'src/remotesettings')
-rw-r--r--src/remotesettings/app/client.cpp4
-rw-r--r--src/remotesettings/app/client.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/remotesettings/app/client.cpp b/src/remotesettings/app/client.cpp
index 1539f4fd..0fc356b8 100644
--- a/src/remotesettings/app/client.cpp
+++ b/src/remotesettings/app/client.cpp
@@ -31,7 +31,7 @@
****************************************************************************/
#include "client.h"
-Q_LOGGING_CATEGORY(dataProviderApp, "dataProvider.App")
+Q_LOGGING_CATEGORY(NeptuneCompanionApp, "NeptuneCompanion.App")
const QString Client::settingsLastUrlsPrefix = QStringLiteral("lastUrls");
const QString Client::settingsLastUrlsItem = QStringLiteral("url");
@@ -43,7 +43,7 @@ const QString Client::defaultUrl = QStringLiteral("tcp://127.0.0.1:9999");
Client::Client(QObject *parent) : QObject(parent),
m_connected(false),
m_timedOut(false),
- m_settings(QStringLiteral("Pelagicore"), QStringLiteral("NeptuneControlApp"))
+ m_settings(QStringLiteral("Pelagicore"), QStringLiteral("NeptuneCompanionApp"))
{
setStatus(tr("Not connected"));
connect(&m_connectionMonitoringTimer, &QTimer::timeout, this, &Client::onCMTimeout);
diff --git a/src/remotesettings/app/client.h b/src/remotesettings/app/client.h
index 92ac2c1d..96db0805 100644
--- a/src/remotesettings/app/client.h
+++ b/src/remotesettings/app/client.h
@@ -39,7 +39,7 @@
#include <QUrl>
#include "connectionmonitoring.h"
-Q_DECLARE_LOGGING_CATEGORY(dataProviderApp)
+Q_DECLARE_LOGGING_CATEGORY(NeptuneCompanionApp)
class Client : public QObject
{