* old-boost.patch OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libreoffice?expand=0&rev=815
14 lines
986 B
Diff
14 lines
986 B
Diff
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
|
|
index bad7d74672d0..07d3549e750d 100644
|
|
--- a/sfx2/source/view/viewfrm.cxx
|
|
+++ b/sfx2/source/view/viewfrm.cxx
|
|
@@ -1287,7 +1287,7 @@ void SfxViewFrame::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint )
|
|
OUString sSetupVersion = utl::ConfigManager::getProductVersion();
|
|
sal_Int32 iCurrent = sSetupVersion.getToken(0,'.').toInt32() * 10 + sSetupVersion.getToken(1,'.').toInt32();
|
|
OUString sLastVersion
|
|
- = officecfg::Setup::Product::ooSetupLastVersion::get().value_or("0.0");
|
|
+ = officecfg::Setup::Product::ooSetupLastVersion::get().get_value_or("0.0");
|
|
sal_Int32 iLast = sLastVersion.getToken(0,'.').toInt32() * 10 + sLastVersion.getToken(1,'.').toInt32();
|
|
if ((iCurrent > iLast) && !Application::IsHeadlessModeEnabled() && !bIsUITest)
|
|
{
|