Skip to content

Commit 5ef1ddf

Browse files
committed
frontend: Fix Apple ifndef preprocessor check
Currently, this is causing this branch to be called even on Apple because __APPLE_ is not defined anywhere.
1 parent 1829492 commit 5ef1ddf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/widgets/OBSBasic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ void OBSBasic::applicationShutdown() noexcept
13961396
{
13971397
/* clear out UI event queue */
13981398
QApplication::sendPostedEvents(nullptr);
1399-
#ifndef __APPLE_
1399+
#ifndef __APPLE__
14001400
QApplication::sendPostedEvents(nullptr, QEvent::DeferredDelete);
14011401
#endif
14021402

0 commit comments

Comments
 (0)