summaryrefslogtreecommitdiff
path: root/freefilesync
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-01 21:22:43 -0400
committerB Stack <bgstack15@gmail.com>2020-09-01 21:22:43 -0400
commit18059e01be3966809415bc70b14c92d2b771f2bb (patch)
tree87168218ed3ccd52d44dabe67dc1c99f81f00c1c /freefilesync
parentfix another wx ism (diff)
downloadstackrpms-18059e01be3966809415bc70b14c92d2b771f2bb.tar.gz
stackrpms-18059e01be3966809415bc70b14c92d2b771f2bb.tar.bz2
stackrpms-18059e01be3966809415bc70b14c92d2b771f2bb.zip
add gui_status_handler.h to revert
Diffstat (limited to 'freefilesync')
-rw-r--r--freefilesync/debian/patches/revert_zenju_aggressive_upstreamisms.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/freefilesync/debian/patches/revert_zenju_aggressive_upstreamisms.patch b/freefilesync/debian/patches/revert_zenju_aggressive_upstreamisms.patch
index c38aedd..12a1b43 100644
--- a/freefilesync/debian/patches/revert_zenju_aggressive_upstreamisms.patch
+++ b/freefilesync/debian/patches/revert_zenju_aggressive_upstreamisms.patch
@@ -297,3 +297,18 @@ index 3cb6aaaa..9484af2c 100644
{
userRequestAbort();
}
+diff --git a/FreeFileSync/Source/ui/gui_status_handler.h b/FreeFileSync/Source/ui/gui_status_handler.h
+index e8ed01e4..2a9e00d2 100644
+--- a/FreeFileSync/Source/ui/gui_status_handler.h
++++ b/FreeFileSync/Source/ui/gui_status_handler.h
+@@ -41,8 +41,8 @@ public:
+ Result reportResults(); //noexcept!!
+
+ private:
+- void onLocalKeyEvent(wxKeyEvent& event);
+- void onAbortCompare(wxCommandEvent& event); //handle abort button click
++ void OnKeyPressed(wxKeyEvent& event);
++ void OnAbortCompare(wxCommandEvent& event); //handle abort button click
+ void showStatsPanel();
+
+ MainDialog& mainDlg_;
bgstack15