summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-05-10 13:40:28 -0400
committerB. Stack <bgstack15@gmail.com>2024-05-10 13:40:28 -0400
commit481d1787f6f3ecd74ee3d8737bb02eb8b4e14ba9 (patch)
treeeab26b60cd6283c51c3192e7448cca4e1fb806f6 /freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch
parentscite 5.5.0 rc1, now with epoch (diff)
downloadstackrpms-481d1787f6f3ecd74ee3d8737bb02eb8b4e14ba9.tar.gz
stackrpms-481d1787f6f3ecd74ee3d8737bb02eb8b4e14ba9.tar.bz2
stackrpms-481d1787f6f3ecd74ee3d8737bb02eb8b4e14ba9.zip
ffs 13.6
Diffstat (limited to 'freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch')
-rw-r--r--freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch b/freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch
index 15948d2..704d544 100644
--- a/freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch
+++ b/freefilesync/debian/patches/ffs_tooltips_no_taskbar.patch
@@ -4,15 +4,15 @@ Author: bgstack15
Message: Suppress taskbar entry for tooltip "window". Upstream declined this patch (https://freefilesync.org/forum/viewtopic.php?t=9898) so it must continue here.
--- a/wx+/tooltip.cpp
+++ b/wx+/tooltip.cpp
-@@ -9,6 +9,7 @@
+@@ -10,6 +10,7 @@
#include <wx/sizer.h>
- #include <wx/statbmp.h>
+ //#include <wx/statbmp.h>
#include <wx/settings.h>
+#include <wx/frame.h>
#include <wx/app.h>
- #include "image_tools.h"
+ //#include "image_tools.h"
#include "bitmap_button.h"
-@@ -28,7 +29,7 @@ class Tooltip::TooltipDlgGenerated : pub
+@@ -29,7 +30,7 @@ class Tooltip::TooltipDlgGenerated : pub
{
public:
TooltipDlgGenerated(wxWindow* parent) : //Suse Linux/X11: needs parent window, else there are z-order issues
bgstack15