summaryrefslogtreecommitdiff
path: root/audio/lmms/files/patch-src_gui_MainApplication.cpp
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-06-29 19:30:02 +0800
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-06-29 19:45:52 +0800
commitd4c3a8cd868e2d7b0451d8860bd245fd6bda8947 (patch)
treeeec52c5a4510432ad1485fbe625e327d4a571d24 /audio/lmms/files/patch-src_gui_MainApplication.cpp
parentaudio/carla: Remove expired port (diff)
audio/lmms: Remove expired port
Depends on expiring audio/carla.
Diffstat (limited to 'audio/lmms/files/patch-src_gui_MainApplication.cpp')
-rw-r--r--audio/lmms/files/patch-src_gui_MainApplication.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/audio/lmms/files/patch-src_gui_MainApplication.cpp b/audio/lmms/files/patch-src_gui_MainApplication.cpp
deleted file mode 100644
index d94bc5bd4c30..000000000000
--- a/audio/lmms/files/patch-src_gui_MainApplication.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/gui/MainApplication.cpp.orig 2023-06-17 16:02:33 UTC
-+++ src/gui/MainApplication.cpp
-@@ -35,6 +35,18 @@
- QApplication(argc, argv),
- m_queuedFile()
- {
-+#if !defined(LMMS_BUILD_WIN32) && !defined(LMMS_BUILD_APPLE) && !defined(LMMS_BUILD_HAIKU) && QT_VERSION >= 0x050000
-+ // Work around a bug of KXmlGui < 5.55
-+ // which breaks the recent files menu
-+ // https://bugs.kde.org/show_bug.cgi?id=337491
-+ for (auto child : children())
-+ {
-+ if (child->inherits("KCheckAcceleratorsInitializer"))
-+ {
-+ delete child;
-+ }
-+ }
-+#endif
- #if defined(LMMS_BUILD_WIN32) && QT_VERSION >= 0x050000
- installNativeEventFilter(this);
- #endif