summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorDirk Grobler <dg@openoffice.org>2001-02-12 15:23:45 +0000
committerDirk Grobler <dg@openoffice.org>2001-02-12 15:23:45 +0000
commitb0c9bf53b623a21037e6e02d77a7ad705e62d3f4 (patch)
tree7b675f353e4c9e008776785d300bdddecf505c1e /desktop
parentf543f9a426789f98e7d755e13669867f4a8f5a84 (diff)
#83239# preloading of ucb configurationdata
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx15
1 files changed, 8 insertions, 7 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 3290359d43f7..8841d443bfff 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: app.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: dg $ $Date: 2001-02-08 15:24:59 $
+ * last change: $Author: dg $ $Date: 2001-02-12 16:23:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -94,12 +94,13 @@ using namespace ::com::sun::star::lang;
void PreloadConfigTrees()
{
// these tree are preloaded to get a faster startup for the office
- Sequence <rtl::OUString> aPreloadPathList(5);
+ Sequence <rtl::OUString> aPreloadPathList(6);
aPreloadPathList[0] = rtl::OUString::createFromAscii("org.openoffice.Office.Common");
- aPreloadPathList[1] = rtl::OUString::createFromAscii("org.openoffice.Office.Writer");
- aPreloadPathList[2] = rtl::OUString::createFromAscii("org.openoffice.Office.WriterWeb");
- aPreloadPathList[3] = rtl::OUString::createFromAscii("org.openoffice.Office.Calc");
- aPreloadPathList[4] = rtl::OUString::createFromAscii("org.openoffice.Office.Impress");
+ aPreloadPathList[1] = rtl::OUString::createFromAscii("org.openoffice.ucb.Configuration/ContentProviders/Office/SecondaryKeys/Local/ProviderData");
+ aPreloadPathList[2] = rtl::OUString::createFromAscii("org.openoffice.Office.Writer");
+ aPreloadPathList[3] = rtl::OUString::createFromAscii("org.openoffice.Office.WriterWeb");
+ aPreloadPathList[4] = rtl::OUString::createFromAscii("org.openoffice.Office.Calc");
+ aPreloadPathList[5] = rtl::OUString::createFromAscii("org.openoffice.Office.Impress");
Reference< XMultiServiceFactory > xProvider(
::comphelper::getProcessServiceFactory()->createInstance(::rtl::OUString::createFromAscii("com.sun.star.configuration.ConfigurationProvider")), UNO_QUERY);