summaryrefslogtreecommitdiff
path: root/wx+
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-12 09:59:08 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-12 09:59:23 -0400
commitfc71e66e5186fb75206290deca2b9a6cfbefa9ac (patch)
treeb8076aea9d6e6408500ea8925ff233c2159a220b /wx+
parentMerge branch '11.10' into 'master' (diff)
downloadFreeFileSync-fc71e66e5186fb75206290deca2b9a6cfbefa9ac.tar.gz
FreeFileSync-fc71e66e5186fb75206290deca2b9a6cfbefa9ac.tar.bz2
FreeFileSync-fc71e66e5186fb75206290deca2b9a6cfbefa9ac.zip
add upstream 11.11
Diffstat (limited to 'wx+')
-rw-r--r--wx+/file_drop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/file_drop.h b/wx+/file_drop.h
index e5de8f95..68024091 100644
--- a/wx+/file_drop.h
+++ b/wx+/file_drop.h
@@ -18,7 +18,7 @@ namespace zen
{
/* register simple file drop event (without issue of freezing dialogs and without wxFileDropTarget overdesign)
CAVEAT: a drop target window must not be directly or indirectly contained within a wxStaticBoxSizer until the following wxGTK bug
- is fixed. According to wxWidgets release cycles this is expected to be: never http://trac.wxwidgets.org/ticket/2763
+ is fixed. According to wxWidgets release cycles this is expected to be: never https://trac.wxwidgets.org/ticket/2763
1. setup a window to emit EVENT_DROP_FILE:
- simple file system paths: setupFileDrop
bgstack15