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:
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user