Clang warning.

This commit is contained in:
Roman Telezhynskyi 2023-11-09 18:41:59 +02:00
parent dac26b1551
commit 19d632a094
3 changed files with 4 additions and 1 deletions

View File

@ -583,8 +583,9 @@ auto VPApplication::event(QEvent *e) -> bool
{ {
mw->show(); mw->show();
} }
return true;
} }
return true; break;
#endif // defined(Q_OS_MAC) #endif // defined(Q_OS_MAC)
default: default:
return VAbstractApplication::event(e); return VAbstractApplication::event(e);

View File

@ -593,6 +593,7 @@ auto MApplication::event(QEvent *e) -> bool
} }
return true; return true;
} }
break;
#endif // defined(Q_OS_MAC) #endif // defined(Q_OS_MAC)
default: default:
return VAbstractApplication::event(e); return VAbstractApplication::event(e);

View File

@ -871,6 +871,7 @@ auto VApplication::event(QEvent *e) -> bool
} }
return true; return true;
} }
break;
#endif // defined(Q_OS_MAC) #endif // defined(Q_OS_MAC)
default: default:
return VAbstractApplication::event(e); return VAbstractApplication::event(e);