mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 11:05:44 +08:00
Ref T314 Style: correct parameter name.
This commit is contained in:
committed by
Klaus Basan
parent
f42d42487d
commit
62634e1e0e
@@ -32,9 +32,9 @@ namespace BlackCore
|
|||||||
return cats;
|
return cats;
|
||||||
}
|
}
|
||||||
|
|
||||||
CNetworkWatchdog::CNetworkWatchdog(bool networkAccessible, QObject *parent) : CContinuousWorker(parent, "swift DB watchdog")
|
CNetworkWatchdog::CNetworkWatchdog(bool networkAccessible, QObject *owner) : CContinuousWorker(owner, "swift DB watchdog")
|
||||||
{
|
{
|
||||||
Q_ASSERT_X(parent, Q_FUNC_INFO, "Need parent (normally sApp)");
|
Q_ASSERT_X(owner, Q_FUNC_INFO, "Need owner (normally sApp)");
|
||||||
|
|
||||||
m_networkAccessible = networkAccessible;
|
m_networkAccessible = networkAccessible;
|
||||||
m_internetAccessible = networkAccessible;
|
m_internetAccessible = networkAccessible;
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace BlackCore
|
|||||||
static const BlackMisc::CLogCategoryList &getLogCategories();
|
static const BlackMisc::CLogCategoryList &getLogCategories();
|
||||||
|
|
||||||
//! Ctor
|
//! Ctor
|
||||||
explicit CNetworkWatchdog(bool networkAccessible, QObject *parent);
|
explicit CNetworkWatchdog(bool networkAccessible, QObject *owner);
|
||||||
|
|
||||||
//! Network status changed, use this function to inform the watchdog
|
//! Network status changed, use this function to inform the watchdog
|
||||||
//! \threadsafe
|
//! \threadsafe
|
||||||
|
|||||||
Reference in New Issue
Block a user