summaryrefslogtreecommitdiff
path: root/user/okular/0001-Ensure-compatibility-with-Qt.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/okular/0001-Ensure-compatibility-with-Qt.patch')
-rw-r--r--user/okular/0001-Ensure-compatibility-with-Qt.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/user/okular/0001-Ensure-compatibility-with-Qt.patch b/user/okular/0001-Ensure-compatibility-with-Qt.patch
deleted file mode 100644
index dfd2daa75..000000000
--- a/user/okular/0001-Ensure-compatibility-with-Qt.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 00f76c2df98c44722b05f7c350cf6b3241c2128f Mon Sep 17 00:00:00 2001
-From: "A. Wilcox" <AWilcox@Wilcox-Tech.com>
-Date: Thu, 18 Apr 2019 18:17:32 -0500
-Subject: [PATCH] Ensure compatibility with Qt <5.10
-
-Qt::AA_CompressTabletEvents was added in Qt 5.10. Use preprocessor check
-to avoid build failures on 5.9 LTS or 5.8 (the minimum version).
----
- shell/main.cpp | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/shell/main.cpp b/shell/main.cpp
-index 17b58c610..dbdebf1a4 100644
---- a/shell/main.cpp
-+++ b/shell/main.cpp
-@@ -19,6 +19,7 @@
- #include <QTextStream>
- #include <kwindowsystem.h>
- #include <QApplication>
-+#include <QtGlobal>
- #include <KAboutData>
- #include <KCrash>
- #include <KMessageBox>
-@@ -31,7 +32,9 @@
- int main(int argc, char** argv)
- {
- QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
-+#if QT_VERSION >= 0x051000
- QCoreApplication::setAttribute(Qt::AA_CompressTabletEvents);
-+#endif
-
- QApplication app(argc, argv);
- KLocalizedString::setApplicationDomain("okular");
---
-2.21.0
-