wxwidgets-3.2.patch 1.3 KB

12345678910111213141516171819202122232425262728
  1. diff -ru filezilla-3.60.1.orig/configure.ac filezilla-3.60.1/configure.ac
  2. --- filezilla-3.60.1.orig/configure.ac 2022-07-07 23:16:56.929350754 +0200
  3. +++ filezilla-3.60.1/configure.ac 2022-07-11 19:02:07.212006501 +0200
  4. @@ -185,11 +185,6 @@
  5. equivalent variable and wxWidgets version is $MIN_WX_VERSION or above.
  6. ])
  7. fi
  8. - if test "${WX_VERSION_MAJOR}.${WX_VERSION_MINOR}" = "3.1"; then
  9. - AC_MSG_ERROR([You must use wxWidgets 3.0.x, development versions of wxWidgets are not supported.])
  10. - elif test "${WX_VERSION_MAJOR}.${WX_VERSION_MINOR}" != "3.0"; then
  11. - AC_MSG_ERROR([You must use wxWidgets 3.0.x, wxWidgets 3.2 or higher is not yet supported.])
  12. - fi
  13. if test "${WX_VERSION_MAJOR}.${WX_VERSION_MINOR}" = "3.0"; then
  14. MAC_REQUIRES_AQUA="YES"
  15. diff -ru filezilla-3.60.1.orig/src/interface/search.h filezilla-3.60.1/src/interface/search.h
  16. --- filezilla-3.60.1.orig/src/interface/search.h 2022-07-07 23:16:56.962684362 +0200
  17. +++ filezilla-3.60.1/src/interface/search.h 2022-07-11 19:01:24.584985318 +0200
  18. @@ -13,7 +13,7 @@
  19. class CSearchDialogFileList;
  20. class CWindowStateManager;
  21. -class CSearchDialog final : protected CFilterConditionsDialog, public CStateEventHandler
  22. +class CSearchDialog final : public CFilterConditionsDialog, public CStateEventHandler
  23. {
  24. friend class CSearchDialogFileList;
  25. public: