mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 10:15:38 +08:00
Ref T109, datastore object and list
* unified properties in int/string DB objects * fixed typo dbKeysAsString
This commit is contained in:
committed by
Mathew Sutcliffe
parent
03a551d016
commit
dfb6b05e9d
@@ -175,7 +175,7 @@ namespace BlackCore
|
||||
if (!inconsistent.isEmpty())
|
||||
{
|
||||
logInconsistentData(
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent airports: " + inconsistent.dbKeysAsStrings(", ")),
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent airports: " + inconsistent.dbKeysAsString(", ")),
|
||||
Q_FUNC_INFO);
|
||||
}
|
||||
|
||||
|
||||
@@ -257,7 +257,7 @@ namespace BlackCore
|
||||
if (!inconsistent.isEmpty())
|
||||
{
|
||||
logInconsistentData(
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent aircraft codes: " + inconsistent.dbKeysAsStrings(", ")),
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent aircraft codes: " + inconsistent.dbKeysAsString(", ")),
|
||||
Q_FUNC_INFO);
|
||||
}
|
||||
|
||||
@@ -307,7 +307,7 @@ namespace BlackCore
|
||||
if (!inconsistent.isEmpty())
|
||||
{
|
||||
logInconsistentData(
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent airline codes: " + inconsistent.dbKeysAsStrings(", ")),
|
||||
CStatusMessage(this, CStatusMessage::SeverityInfo, "Inconsistent airline codes: " + inconsistent.dbKeysAsString(", ")),
|
||||
Q_FUNC_INFO);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user