mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 19:09:16 -04:00
Office team is proud to announce LibreOffice 7.5 Community, the new major release of the volunteer-supported free office suite for desktop productivity Read more: https://blog.documentfoundation.org/blog/2023/02/02/tdf-announces-libreoffice-75-community/
20 lines
881 B
C++
20 lines
881 B
C++
--- vcl/qt5/QtInstance.cxx.orig 2022-12-22 00:14:09 UTC
|
|
+++ vcl/qt5/QtInstance.cxx
|
|
@@ -492,7 +492,7 @@ QtInstance::createPicker(css::uno::Reference<css::uno:
|
|
{
|
|
SolarMutexGuard g;
|
|
rtl::Reference<QtFilePicker> pPicker;
|
|
- RunInMainThread([&, this]() { pPicker = createPicker(context, eMode); });
|
|
+ RunInMainThread([&pPicker, this, context, eMode]() { pPicker = createPicker(context, eMode); });
|
|
assert(pPicker);
|
|
return pPicker;
|
|
}
|
|
@@ -751,7 +751,7 @@ VCLPLUG_QT_PUBLIC SalInstance* create_SalInstance()
|
|
extern "C" {
|
|
VCLPLUG_QT_PUBLIC SalInstance* create_SalInstance()
|
|
{
|
|
- static const bool bUseCairo = (nullptr != getenv("SAL_VCL_QT5_USE_CAIRO"));
|
|
+ static const bool bUseCairo = true; // (nullptr != getenv("SAL_VCL_QT5_USE_CAIRO"));
|
|
|
|
std::unique_ptr<char* []> pFakeArgv;
|
|
std::unique_ptr<int> pFakeArgc;
|