mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +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; }
|
||||
|
||||
QMap<QString, int> times;
|
||||
QMap<QString, qint64> times;
|
||||
QElapsedTimer time;
|
||||
CCoreFacade::registerMetadata();
|
||||
|
||||
@@ -174,7 +174,7 @@ namespace BlackCore
|
||||
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;
|
||||
Q_UNUSED(c) // for release version
|
||||
|
||||
@@ -200,7 +200,7 @@ namespace BlackCore
|
||||
void initDBusServer(const QString &dBusAddress);
|
||||
|
||||
//! post init tasks, load simulator and connecting context signal slots
|
||||
void initPostSetup(QMap<QString, int> ×);
|
||||
void initPostSetup(QMap<QString, qint64> ×);
|
||||
};
|
||||
} // namespace
|
||||
#endif // guard
|
||||
|
||||
Reference in New Issue
Block a user