mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-26 15:36:19 +01:00
consistent bracing style
This commit is contained in:
@@ -345,7 +345,9 @@ void BitcoinGUI::error(const QString &title, const QString &message)
|
||||
{
|
||||
// Show as "balloon" message if possible
|
||||
trayIcon->showMessage(title, message, QSystemTrayIcon::Critical);
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
// Fall back to old fashioned popup dialog if not
|
||||
QMessageBox::critical(this, title,
|
||||
message,
|
||||
@@ -363,7 +365,9 @@ void BitcoinGUI::changeEvent(QEvent *e)
|
||||
{
|
||||
hide();
|
||||
e->ignore();
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
e->accept();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user