mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-19 12:15:29 +08:00
Use qint64 for times as all QTimer values are qint64 (avoid warnings)
This commit is contained in:
@@ -81,7 +81,7 @@ namespace BlackCore
|
|||||||
{
|
{
|
||||||
if (m_initalized || m_shuttingDown) { return; }
|
if (m_initalized || m_shuttingDown) { return; }
|
||||||
|
|
||||||
QMap<QString, int> times;
|
QMap<QString, qint64> times;
|
||||||
QElapsedTimer time;
|
QElapsedTimer time;
|
||||||
CCoreFacade::registerMetadata();
|
CCoreFacade::registerMetadata();
|
||||||
|
|
||||||
@@ -174,7 +174,7 @@ namespace BlackCore
|
|||||||
CLogMessage(this).info(u"DBus server on address: '%1'") << dBusAddress;
|
CLogMessage(this).info(u"DBus server on address: '%1'") << dBusAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CCoreFacade::initPostSetup(QMap<QString, int> ×)
|
void CCoreFacade::initPostSetup(QMap<QString, qint64> ×)
|
||||||
{
|
{
|
||||||
bool c = false;
|
bool c = false;
|
||||||
Q_UNUSED(c) // for release version
|
Q_UNUSED(c) // for release version
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ namespace BlackCore
|
|||||||
void initDBusServer(const QString &dBusAddress);
|
void initDBusServer(const QString &dBusAddress);
|
||||||
|
|
||||||
//! post init tasks, load simulator and connecting context signal slots
|
//! post init tasks, load simulator and connecting context signal slots
|
||||||
void initPostSetup(QMap<QString, int> ×);
|
void initPostSetup(QMap<QString, qint64> ×);
|
||||||
};
|
};
|
||||||
} // namespace
|
} // namespace
|
||||||
#endif // guard
|
#endif // guard
|
||||||
|
|||||||
Reference in New Issue
Block a user