Skip to content

Commit

Permalink
Fix crash with obsolete MacPasteboardMime
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov committed Jan 28, 2025
1 parent 1385b49 commit 71fdee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/qscintilla/Qt4Qt5/qsciscintillabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ QsciScintillaBase::QsciScintillaBase(QWidget *parent)

triple_click.setSingleShot(true);

#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX))
#if DISABLED_BECAUSE_IS_OBSOLETE_AND_CRAHES && ((QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)))
initialiseRectangularPasteboardMime();
#endif

Expand Down

0 comments on commit 71fdee2

Please sign in to comment.