mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 05:26:45 +08:00
* changed signals in setup reader * explicit mode is default * detailed information what is loaded * new log pattern * allow to add message list to log component * allow to clear cache by cmd line arg * consolidated cmd names
This commit is contained in:
@@ -72,10 +72,16 @@ namespace BlackGui
|
||||
|
||||
void CLogComponent::appendStatusMessageToList(const CStatusMessage &statusMessage)
|
||||
{
|
||||
if (statusMessage.isEmpty()) return;
|
||||
if (statusMessage.isEmpty()) { return; }
|
||||
this->ui->tvp_StatusMessages->insert(statusMessage);
|
||||
}
|
||||
|
||||
void CLogComponent::appendStatusMessagesToList(const CStatusMessageList &statusMessages)
|
||||
{
|
||||
if (statusMessages.isEmpty()) { return; }
|
||||
this->ui->tvp_StatusMessages->insert(statusMessages);
|
||||
}
|
||||
|
||||
void CLogComponent::CLogMenu::customMenu(QMenu &menu) const
|
||||
{
|
||||
CLogComponent *logComp = qobject_cast<CLogComponent *>(this->parent());
|
||||
|
||||
Reference in New Issue
Block a user