Files
filezilla/filezilla-welcome_dialog.patch
Eric Schirra a6bb3691da Accepting request 929888 from home:ecsos
- Update to 3.56.2
  * Bugfixes and minor changes:
    - Fixed a potential crash after uploading
- Changes from 3.56.1
  * Bugfixes and minor changes:
    - macOS Monterey: Opening the Site Manager on startup is now
      delayed a millisecond, otherwise the right mouse button would
      have stopped working
    - macOS: Fixed getting temporary directory
    - MSW: Updated to libfilezilla 0.34.1 to fix local directory
      contents returned by the system in oversized buffers
      containing nulls
- Rebase filezilla-welcome_dialog.patch.

OBS-URL: https://build.opensuse.org/request/show/929888
OBS-URL: https://build.opensuse.org/package/show/network/filezilla?expand=0&rev=190
2021-11-06 15:23:48 +00:00

23 lines
765 B
Diff

From: Jan Engelhardt <jengelh@inai.de>
Date: 2021-08-15 00:41:12.427697293 +0200
[ 101s] welcome_dialog.cpp:122:26: error: operands to '?:' have different
types 'wxString' and 'const std::__cxx11::basic_string<wchar_t>'
---
src/interface/welcome_dialog.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: filezilla-3.56.2/src/interface/welcome_dialog.cpp
===================================================================
--- filezilla-3.56.2.orig/src/interface/welcome_dialog.cpp
+++ filezilla-3.56.2/src/interface/welcome_dialog.cpp
@@ -119,7 +119,7 @@ bool CWelcomeDialog::Run(wxWindow* paren
buttons->Realize();
- InitFooter(force ? std::wstring() : resources);
+ InitFooter(force ? wxString() : wxString(resources));
Layout();