consistent bracing style

This commit is contained in:
Wladimir J. van der Laan
2011-06-07 18:59:01 +02:00
parent 6717457390
commit 8e86dca256
8 changed files with 97 additions and 36 deletions

View File

@@ -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();
}
}