From 2101494a70b143ab6663a8e466676727fc8d6f0c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Nov 19 2010 15:47:11 +0000 Subject: IMO this is bogus, restart after component reg forced quickstarter to appear regardless of settings --- diff --git a/libreoffice.spec b/libreoffice.spec index 276aebb..92083b0 100644 --- a/libreoffice.spec +++ b/libreoffice.spec @@ -93,6 +93,7 @@ Patch9: openoffice.org-3.1.1.ooo105784.vcl.sniffscriptforsubs.patch Patch10: openoffice.org-3.3.0.ooo108637.sfx2.uisavedir.patch Patch11: openoffice.org-3.3.0.ooo113273.desktop.resolvelinks.patch Patch12: turn-script-providers-into-extensions.patch +Patch13: qstart.dont-forceenabled-on-post-reg-restart.patch %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} %define instdir %{_libdir} @@ -702,6 +703,7 @@ cp -p %{SOURCE20} external/unowinreg/unowinreg.dll %patch10 -p1 -b .ooo108637.sfx2.uisavedir.patch %patch11 -p0 -b .ooo113273.desktop.resolvelinks.patch %patch12 -p1 -b .turn-script-providers-into-extensions.patch +%patch13 -p1 -b .qstart.dont-forceenabled-on-post-reg-restart.patch touch scripting/source/pyprov/delzip touch scripting/util/provider/beanshell/delzip touch scripting/util/provider/javascript/delzip diff --git a/qstart.dont-forceenabled-on-post-reg-restart.patch b/qstart.dont-forceenabled-on-post-reg-restart.patch new file mode 100644 index 0000000..8236e53 --- /dev/null +++ b/qstart.dont-forceenabled-on-post-reg-restart.patch @@ -0,0 +1,71 @@ +diff --git a/desktop/inc/app.hxx b/desktop/inc/app.hxx +index b657374..1f32f9b 100644 +--- a/desktop/inc/app.hxx ++++ b/desktop/inc/app.hxx +@@ -133,7 +133,6 @@ class Desktop : public Application + static sal_Bool IsFirstStartWizardNeeded(); + static sal_Bool CheckExtensionDependencies(); + +- static void DoRestartActionsIfNecessary( sal_Bool bQuickStart ); + static void SetRestartState(); + + void SynchronizeExtensionRepositories(); +diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx +index 9ec6e87..67834c3 100644 +--- a/desktop/source/app/app.cxx ++++ b/desktop/source/app/app.cxx +@@ -1919,9 +1921,8 @@ void Desktop::Main() + + if ( !bRestartRequested ) + { +- // if this run of the office is triggered by restart, some additional actions should be done +- DoRestartActionsIfNecessary( !pCmdLineArgs->IsInvisible() && !pCmdLineArgs->IsNoQuickstart() ); +- ++ // if this run of the office is triggered by restart, some ++ // additional actions should be done + Execute(); + } + } +diff --git a/desktop/source/app/appfirststart.cxx b/desktop/source/app/appfirststart.cxx +index 9ef0a8a..673dfa8 100644 +--- a/desktop/source/app/appfirststart.cxx ++++ b/desktop/source/app/appfirststart.cxx +@@ -269,38 +269,6 @@ sal_Bool Desktop::IsFirstStartWizardNeeded() + return impl_isFirstStart() || !impl_isLicenseAccepted(); + } + +-void Desktop::DoRestartActionsIfNecessary( sal_Bool bQuickStart ) +-{ +- if ( bQuickStart ) +- { +- try +- { +- Reference< XPropertySet > xPSet = impl_getConfigurationAccess( OUString( RTL_CONSTASCII_USTRINGPARAM( "org.openoffice.Setup/Office" ) ) ); +- +- OUString sPropName( RTL_CONSTASCII_USTRINGPARAM( "OfficeRestartInProgress" ) ); +- Any aRestart = xPSet->getPropertyValue( sPropName ); +- sal_Bool bRestart = sal_False; +- if ( ( aRestart >>= bRestart ) && bRestart ) +- { +- xPSet->setPropertyValue( sPropName, makeAny( sal_False ) ); +- Reference< util::XChangesBatch >( xPSet, UNO_QUERY_THROW )->commitChanges(); +- +- Sequence< Any > aSeq( 2 ); +- aSeq[0] <<= sal_True; +- aSeq[1] <<= sal_True; +- +- Reference < XInitialization > xQuickstart( ::comphelper::getProcessServiceFactory()->createInstance( +- OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.office.Quickstart" ) ) ),UNO_QUERY_THROW ); +- xQuickstart->initialize( aSeq ); +- } +- } +- catch( uno::Exception& ) +- { +- // this is no critical operation so it should not prevent office from starting +- } +- } +-} +- + void Desktop::SetRestartState() + { + try