/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "sortdynres.hxx" #include #include using namespace com::sun::star::uno; using namespace com::sun::star::lang; extern "C" SAL_DLLPUBLIC_EXPORT void * srtrs1_component_getFactory( const sal_Char * pImplName, void * pServiceManager, void * ) { void * pRet = nullptr; Reference< XMultiServiceFactory > xSMgr( static_cast< XMultiServiceFactory * >( pServiceManager ) ); Reference< XSingleServiceFactory > xFactory; // SortedDynamicResultSetFactory. if ( SortedDynamicResultSetFactory::getImplementationName_Static(). equalsAscii( pImplName ) ) { xFactory = SortedDynamicResultSetFactory::createServiceFactory( xSMgr ); } if ( xFactory.is() ) { xFactory->acquire(); pRet = xFactory.get(); } return pRet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /libreoffice-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/ure
ref='/cgit/lo/core/commit/basegfx/source?h=feature/table_rotated_text&id=5a6ed660ec74e445a827c7aa41e4793c64a46271'>Resolves: #i120596# Optimized grid primitive
AgeCommit message (Expand)Author
2012-02-06Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2011-12-26gbuildize ureDavid Tardon
2011-11-02Simplify addition of optional components to URE_MORE_{SERVICES,TYPES}.Stephan Bergmann
2011-09-30clean-up ghost traces of unicowNorbert Thiebaud
2011-09-26fix path to binaryurp.componentMatúš Kukan
2011-09-21Cleaned up sal_textenc, making it work on Mac OS X.Stephan Bergmann
2011-07-12Remove component_getImplementationEnvironmentMatúš Kukan
2011-06-03Drop %_EXT% which was always emptyTor Lillqvist
2011-04-21Easyhack: Add visibility markup to all component_get* functionsJulien Nabet
2011-03-16Corrected assignment in makefileThorsten Behrens
2011-03-15Skip the java part when --without-java.Kohei Yoshida
2011-03-08Merge commit 'ooo/DEV300_m101' into integration/dev300_m101Norbert Thiebaud
2011-02-09Trying to remove the stlport mention from the codeFridrich Štrba
Armin Le Grand
2013-05-15Spelling "separate" (etc) correctly is hardTor Lillqvist
2013-05-12Resolves: fdo#49508# #i120539# Fixed visualisation of gradient 'square'Armin Le Grand
2013-04-30Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks
2013-04-11Small vector calculation correctionArmin Le Grand
2013-04-01Prefer prefix ++/-- operators for non-primitive typesJulien Nabet
2013-04-01Add assert nCount <= vector.size() (Thank you Markus!)Julien Nabet
2013-04-01Prefer prefix ++/-- operators for non-primitive typesJulien Nabet
2013-03-20Fix loplugin warning.Thorsten Behrens
2013-03-09fdo#43460: use isEmpty()Thomas Arnhold
2013-03-04fix buildDavid Ostrovsky
2013-03-04doubled includesThomas Arnhold
2013-03-04it's surely a bad idea to not crash in dbgutil mode but crash in product modeCaolán McNamara
2013-02-25loplugin: unused variablesThomas Arnhold
2013-02-17coverity#984038 Uninitialized scalar variableCaolán McNamara