summaryrefslogtreecommitdiff
path: root/vcl/source/components/factory.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-03-21 00:37:28 +0100
committerThorsten Behrens <tbehrens@suse.com>2013-03-21 00:54:16 +0100
commitff140bb6b8b109f14c270ff059f0b8d71dab5d6c (patch)
tree4fee2384e2937f167943c37233e6098b9d064a11 /vcl/source/components/factory.cxx
parentdd0db92a174f6a4da1ada3de17cb869264be9342 (diff)
Remove StringMirror UNO service.
This was a kludge from back in the day when pdfimport was an extension and could not link against office libs. While at it, fix mirror method to handle unicode surrogates correctly. Change-Id: I3582a7870efdfea50446d3604a185025b1d5a196
Diffstat (limited to 'vcl/source/components/factory.cxx')
-rw-r--r--vcl/source/components/factory.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/vcl/source/components/factory.cxx b/vcl/source/components/factory.cxx
index eb7c05bcce1f..9fefd4ba7233 100644
--- a/vcl/source/components/factory.cxx
+++ b/vcl/source/components/factory.cxx
@@ -41,10 +41,6 @@ extern Sequence< OUString > SAL_CALL FontIdentificator_getSupportedServiceNames(
extern OUString SAL_CALL FontIdentificator_getImplementationName();
extern Reference< XInterface > SAL_CALL FontIdentificator_createInstance( const Reference< XMultiServiceFactory > & );
-extern Sequence< OUString > SAL_CALL StringMirror_getSupportedServiceNames();
-extern OUString SAL_CALL StringMirror_getImplementationName();
-extern Reference< XInterface > SAL_CALL StringMirror_createInstance( const Reference< XMultiServiceFactory > & );
-
extern OUString SAL_CALL Clipboard_getImplementationName();
extern Reference< XSingleServiceFactory > SAL_CALL Clipboard_createFactory( const Reference< XMultiServiceFactory > & );
@@ -86,12 +82,6 @@ extern "C" {
xMgr, vcl::FontIdentificator_getImplementationName(), vcl::FontIdentificator_createInstance,
vcl::FontIdentificator_getSupportedServiceNames() );
}
- else if( vcl::StringMirror_getImplementationName().equalsAscii( pImplementationName ) )
- {
- xFactory = ::cppu::createSingleFactory(
- xMgr, vcl::StringMirror_getImplementationName(), vcl::StringMirror_createInstance,
- vcl::StringMirror_getSupportedServiceNames() );
- }
else if( vcl::Clipboard_getImplementationName().equalsAscii( pImplementationName ) )
{
xFactory = vcl::Clipboard_createFactory( xMgr );