FreeBSD Bugzilla – Attachment 206773 Details for
Bug 239988
editors/libreoffice: update 6.2.5 -> 6.3.0 compiler failure: no viable constructor ...
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
removing using of std::function from vcl/unx/kde5/KDE5SalInstance.cxx
patch-vcl_unx_kde5_KDE5SalInstance.cxx (text/plain), 799 bytes, created by
Vladimir Druzenko
on 2019-08-22 00:04:38 UTC
(
hide
)
Description:
removing using of std::function from vcl/unx/kde5/KDE5SalInstance.cxx
Filename:
MIME Type:
Creator:
Vladimir Druzenko
Created:
2019-08-22 00:04:38 UTC
Size:
799 bytes
patch
obsolete
>--- vcl/unx/kde5/KDE5SalInstance.cxx.orig >+++ vcl/unx/kde5/KDE5SalInstance.cxx >@@ -43,9 +43,9 @@ > SalFrame* KDE5SalInstance::CreateFrame(SalFrame* pParent, SalFrameStyleFlags nState) > { > SalFrame* pRet(nullptr); >- RunInMainThread(std::function([&pRet, pParent, nState]() { >+ RunInMainThread([&pRet, pParent, nState]() { > pRet = new KDE5SalFrame(static_cast<KDE5SalFrame*>(pParent), nState, true); >- })); >+ }); > assert(pRet); > return pRet; > } >@@ -65,7 +65,7 @@ > { > SolarMutexGuard g; > Qt5FilePicker* pPicker; >- RunInMainThread(std::function([&, this]() { pPicker = createPicker(context, eMode); })); >+ RunInMainThread([&, this]() { pPicker = createPicker(context, eMode); }); > assert(pPicker); > return pPicker; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 239988
:
206765
| 206773