Bugzilla – Attachment 153987 Details for
Bug 127408
compiler failure: no viable constructor …
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Remove std::function
lo63_kde5.diff (text/plain), 1.23 KB, created by
vvd
on 2019-09-06 12:56:02 UTC
(
hide
)
Description:
Remove std::function
Filename:
MIME Type:
Creator:
vvd
Created:
2019-09-06 12:56:02 UTC
Size:
1.23 KB
patch
obsolete
>--- vcl/qt5/Qt5Instance.cxx.orig 2019-08-21 22:22:13.996160000 +0800 >+++ vcl/qt5/Qt5Instance.cxx 2019-08-21 22:30:33.169056000 +0800 >@@ -413,7 +413,7 @@ > { > SolarMutexGuard g; > Qt5FilePicker* pPicker; >- RunInMainThread(std::function([&, this]() { pPicker = createPicker(context, eMode); })); >+ RunInMainThread([&, this]() { pPicker = createPicker(context, eMode); }); > assert(pPicker); > return pPicker; > } >--- 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 Raw
Actions:
View
Attachments on
bug 127408
: 153987