1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-05-10 19:14:57 +02:00

fix: Add braces to if keyword

This commit is contained in:
Sirius Bakke
2022-01-11 19:55:36 +01:00
parent ea25d1e557
commit 4fb7572ae0

View File

@@ -298,18 +298,20 @@ void ObjConflictResolutionDialog::setFlags()
void ObjConflictResolutionDialog::accept() void ObjConflictResolutionDialog::accept()
{ {
if (fwbdebug) if (fwbdebug) {
qDebug("ObjConflictResolutionDialog::accept(): isVisible=%d", qDebug("ObjConflictResolutionDialog::accept(): isVisible=%d",
isVisible()); isVisible());
}
QDialog::accept(); QDialog::accept();
} }
void ObjConflictResolutionDialog::reject() void ObjConflictResolutionDialog::reject()
{ {
if (fwbdebug) if (fwbdebug) {
qDebug("ObjConflictResolutionDialog::reject(): isVisible=%d", qDebug("ObjConflictResolutionDialog::reject(): isVisible=%d",
isVisible()); isVisible());
}
QDialog::reject(); QDialog::reject();
} }