diff options
author | Dirk Völzke <dv@openoffice.org> | 2001-04-18 14:00:58 +0000 |
---|---|---|
committer | Dirk Völzke <dv@openoffice.org> | 2001-04-18 14:00:58 +0000 |
commit | dcce64815d31c4cbc00196933a236c93a864f333 (patch) | |
tree | eb9d85018a1aab74bab192b1b00b9de02a7cefd6 /sfx2 | |
parent | 88ed8b81fa263e4fa308963f07f65ea48a3bc4e4 (diff) |
#84092# removed interface com.sun.star.ui.FileSave
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index f6e1c7753b89..1b1f203ecd40 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -2,9 +2,9 @@ * * $RCSfile: appuno.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: mba $ $Date: 2001-04-02 08:57:28 $ + * last change: $Author: dv $ $Date: 2001-04-18 15:00:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1006,13 +1006,6 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager , xNewKey = xKey->createKey( aTempStr ); xNewKey->createKey( ::rtl::OUString::createFromAscii("com.sun.star.ui.FileOpen") ); - aImpl = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")); - aImpl += SfxFilePicker::impl_getStaticImplementationNameSave(); - - aTempStr = aImpl; - aTempStr += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/UNO/SERVICES")); - xNewKey = xKey->createKey( aTempStr ); - xNewKey->createKey( ::rtl::OUString::createFromAscii("com.sun.star.ui.FileSave") ); #if 0 if (pRegistryKey) { @@ -1068,10 +1061,6 @@ void* SAL_CALL component_getFactory( const sal_Char* pImplementationName { xFactory = SfxFilePicker::impl_createFactoryOpen( xServiceManager ); } - if ( SfxFilePicker::impl_getStaticImplementationNameSave().equals( UNOOUSTRING::createFromAscii( pImplementationName ) ) ) - { - xFactory = SfxFilePicker::impl_createFactorySave( xServiceManager ); - } // Factory is valid - service was found. if ( xFactory.is() ) |