mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-13 07:35:41 +08:00
No redundant logging
This commit is contained in:
@@ -40,7 +40,7 @@ void SwiftGuiStd::ps_onMenuClicked()
|
||||
else if (sender == this->ui->menu_ReloadSettings)
|
||||
{
|
||||
this->ui->comp_MainInfoArea->getSettingsComponent()->reloadSettings();
|
||||
this->ps_displayStatusMessageInGui(CLogMessage(this).info("Settings reloaded"));
|
||||
CLogMessage(this).info("Settings reloaded");
|
||||
}
|
||||
else if (sender == this->ui->menu_FileReloadStyleSheets)
|
||||
{
|
||||
@@ -53,7 +53,7 @@ void SwiftGuiStd::ps_onMenuClicked()
|
||||
}
|
||||
else if (sender == this->ui->menu_FileClose)
|
||||
{
|
||||
this->ps_displayStatusMessageInGui(CLogMessage(this).info("Closing"));
|
||||
CLogMessage(this).info("Closing");
|
||||
this->close();
|
||||
}
|
||||
else if (sender == this->ui->menu_FileSettingsDirectory)
|
||||
|
||||
Reference in New Issue
Block a user