aboutsummaryrefslogtreecommitdiff
path: root/editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx')
-rw-r--r--editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx b/editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx
deleted file mode 100644
index 7568905392b8..000000000000
--- a/editors/libreoffice/files/patch-vcl_unx_kde5_kde5salinstance.cxx
+++ /dev/null
@@ -1,23 +0,0 @@
---- 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;
- }