diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-10-01 04:13:31 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-10-01 04:13:31 +0000 |
commit | c45de9579f6ec97574056dd335df02031ccd00ad (patch) | |
tree | bf42b7c476faa7a6183d0feaa4c65bb90053847d /net/rclone-browser/files/patch-src_mount__widget.cpp | |
parent | irc/py-limnoria: Backport Web plugin bugfixes (diff) |
Qt5 update to 5.13.0
For new features, check: https://wiki.qt.io/New_Features_in_Qt_5.13
Thanks to adridg who helped to fix a lot of packages.
Exp-run by: antoine
PR: 238782
Notes
Notes:
svn path=/head/; revision=513447
Diffstat (limited to 'net/rclone-browser/files/patch-src_mount__widget.cpp')
-rw-r--r-- | net/rclone-browser/files/patch-src_mount__widget.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/rclone-browser/files/patch-src_mount__widget.cpp b/net/rclone-browser/files/patch-src_mount__widget.cpp new file mode 100644 index 000000000000..0f3e3c8c77ff --- /dev/null +++ b/net/rclone-browser/files/patch-src_mount__widget.cpp @@ -0,0 +1,11 @@ +--- src/mount_widget.cpp.orig 2017-03-11 22:16:36 UTC ++++ src/mount_widget.cpp +@@ -57,7 +57,7 @@ MountWidget::MountWidget(QProcess* process, const QStr + } + }); + +- QObject::connect(mProcess, static_cast<void(QProcess::*)(int)>(&QProcess::finished), this, [=](int status) ++ QObject::connect(mProcess, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, [=](int status) + { + mProcess->deleteLater(); + mRunning = false; |