summarylogtreecommitdiffstats
path: root/screenshot_cpp_h_fix.patch
blob: cb33cf34f7d44f9f92b9f320e804908fc6db4464 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
diff -Naurp src-orig/Lightscreen-2.3/lightscreenwindow.cpp src-fixed/Lightscreen-2.3/lightscreenwindow.cpp
--- lightscreenwindow.cpp	2016-10-30 17:52:35.000000000 -0400
+++ lightscreenwindow.cpp	2016-11-21 18:16:57.486217211 -0500
@@ -206,7 +206,7 @@ void LightscreenWindow::cleanup(Screensh
     }
 
     if (settings()->value("options/playSound", false).toBool()) {
-        if (options.result == Screenshot::Success) {
+        if (options.result == Screenshot::Success_) {
             QSound::play("sounds/ls.screenshot.wav");
         } else {
 #ifdef Q_OS_WIN
@@ -220,7 +220,7 @@ void LightscreenWindow::cleanup(Screensh
 
     updateStatus();
 
-    if (options.result != Screenshot::Success) {
+    if (options.result != Screenshot::Success_) {
         return;
     }
 
@@ -377,7 +377,7 @@ void LightscreenWindow::executeArguments
 void LightscreenWindow::notify(const Screenshot::Result &result)
 {
     switch (result) {
-    case Screenshot::Success:
+    case Screenshot::Success_:
         mTrayIcon->setIcon(QIcon(":/icons/lightscreen.yes"));
 
         if (mHasTaskbarButton) {
@@ -645,7 +645,7 @@ void LightscreenWindow::showScreenshotMe
     QString title;
     QString message;
 
-    if (result == Screenshot::Success) {
+    if (result == Screenshot::Success_) {
         title = QFileInfo(fileName).fileName();
 
         if (settings()->value("file/target").toString().isEmpty()) {
diff -Naurp src-orig/Lightscreen-2.3/tools/screenshot.cpp src-fixed/Lightscreen-2.3/tools/screenshot.cpp
--- tools/screenshot.cpp	2016-10-30 17:52:35.000000000 -0400
+++ tools/screenshot.cpp	2016-11-21 18:16:40.246217313 -0500
@@ -244,7 +244,7 @@ void Screenshot::save()
         QApplication::clipboard()->setPixmap(mPixmap, QClipboard::Clipboard);
 
         if (!mOptions.file) {
-            result = Screenshot::Success;
+            result = Screenshot::Success_;
         }
     }
 
@@ -254,9 +254,9 @@ void Screenshot::save()
         if (name.isEmpty()) {
             result = Screenshot::Cancel;
         } else if (mUnloaded) {
-            result = (QFile::rename(mUnloadFilename, fileName)) ? Screenshot::Success : Screenshot::Failure;
+            result = (QFile::rename(mUnloadFilename, fileName)) ? Screenshot::Success_ : Screenshot::Failure;
         } else if (mPixmap.save(fileName, 0, mOptions.quality)) {
-            result = Screenshot::Success;
+            result = Screenshot::Success_;
         } else {
             result = Screenshot::Failure;
         }
diff -Naurp src-orig/Lightscreen-2.3/tools/screenshot.h src-fixed/Lightscreen-2.3/tools/screenshot.h
--- tools/screenshot.h	2016-10-30 17:52:35.000000000 -0400
+++ tools/screenshot.h	2016-11-21 18:16:31.439550699 -0500
@@ -55,7 +55,7 @@ public:
 
     enum Result {
         Failure = 0,
-        Success = 1,
+        Success_ = 1,
         Cancel = 2
     };
     Q_ENUM(Result)