summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-02-25 15:33:22 +0100
committerTor Lillqvist <tml@collabora.com>2016-02-26 12:37:04 +0000
commit79c11bb56ecf9f99250387ee59559f7472028f05 (patch)
treeb086c549f676d7c8d987d31025ccdbcdddfe20a8 /include/cppuhelper
parentsw: related: tdf#58624 convert to assert() in ~SwAccessibleMap() (diff)
downloadcore-79c11bb56ecf9f99250387ee59559f7472028f05.tar.gz
core-79c11bb56ecf9f99250387ee59559f7472028f05.zip
Use an XInitialization-based channel to request service mgr pre-init
...instead of private cppu::preInitBootstrap function Change-Id: Id0e6fcf721b697c993e5acffaf7836452cfa9750 Reviewed-on: https://gerrit.libreoffice.org/22699 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/detail/preinit.hxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/cppuhelper/detail/preinit.hxx b/include/cppuhelper/detail/preinit.hxx
deleted file mode 100644
index d152cf250003..000000000000
--- a/include/cppuhelper/detail/preinit.hxx
+++ /dev/null
@@ -1,37 +0,0 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#ifndef INCLUDED_CPPUHELPER_DETAIL_PREINIT_HXX
-#define INCLUDED_CPPUHELPER_DETAIL_PREINIT_HXX
-
-#include <cppuhelper/cppuhelperdllapi.h>
-
-namespace cppu
-{
-
-#if defined LIBO_INTERNAL_ONLY
-
-/** Preload all shared library components with service manager upon
- information from bootstrap variables.
-
- This function tries to find its parameters via these bootstrap variables:
-
- - UNO_SERVICES -- a space separated list of file urls of service rdbs
-
-*/
-CPPUHELPER_DLLPUBLIC void SAL_CALL
-preInitBootstrap(css::uno::Reference< css::uno::XComponentContext > const & xContext);
-
-#endif // LIBO_INTERNAL_ONLY
-
-} // namespace cppu
-
-#endif // INCLUDED_CPPUHELPER_DETAIL_PREINIT_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */