forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflameshot-0.6.0-unbundle-qtsingleapplication.patch
47 lines (38 loc) · 1.47 KB
/
flameshot-0.6.0-unbundle-qtsingleapplication.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
diff -ruN a/flameshot.pro b/flameshot.pro
--- a/flameshot.pro 2020-05-25 21:16:54.044214597 +0300
+++ b/flameshot.pro 2020-05-25 21:25:03.808676488 +0300
@@ -18,7 +18,7 @@
QT += dbus
}
-CONFIG += c++11 link_pkgconfig
+CONFIG += c++11 link_pkgconfig qtsingleapplication
#CONFIG += packaging # Enables "make install" for packaging paths
@@ -63,7 +63,6 @@
DEFINES += QT_DEPRECATED_WARNINGS
-include(src/third-party/singleapplication/singleapplication.pri)
include(src/third-party/Qt-Color-Widgets//color_widgets.pri)
DEFINES += QAPPLICATION_CLASS=QApplication
diff -ruN a/src/main.cpp b/src/main.cpp
--- a/src/main.cpp 2020-05-25 21:16:54.055215952 +0300
+++ b/src/main.cpp 2020-05-25 21:25:35.095744395 +0300
@@ -16,13 +16,13 @@
// along with Flameshot. If not, see <http://www.gnu.org/licenses/>.
#include "src/core/controller.h"
-#include "singleapplication.h"
#include "src/utils/filenamehandler.h"
#include "src/utils/confighandler.h"
#include "src/cli/commandlineparser.h"
#include "src/utils/systemnotification.h"
#include "src/utils/pathinfo.h"
#include "src/core/capturerequest.h"
+#include <QtSingleApplication>
#include <QApplication>
#include <QTranslator>
#include <QTextStream>
@@ -44,7 +44,7 @@
// no arguments, just launch Flameshot
if (argc == 1) {
- SingleApplication app(argc, argv);
+ QtSingleApplication app(argc, argv);
QTranslator translator;
QStringList trPaths = PathInfo::translationsPaths();