diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-04-01 22:41:53 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-04-01 22:45:38 +0200 |
commit | 2819dd2ac1de70ce9187eee916ea12567c649d56 (patch) | |
tree | a127df816476ba8a13a49fcf8a8ef98ced2a56c6 /starmath | |
parent | 04008c27303a079c01db7fdc3bb110b09d3c8026 (diff) |
starmath: cleanup macros
Change-Id: I08a7d6d39302b370a5c40645fbc3494e6a9af118
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/smdetect.cxx | 61 | ||||
-rw-r--r-- | starmath/source/smdetect.hxx | 10 |
2 files changed, 33 insertions, 38 deletions
diff --git a/starmath/source/smdetect.cxx b/starmath/source/smdetect.cxx index 96869425e7c2..e6a2ef8ccb04 100644 --- a/starmath/source/smdetect.cxx +++ b/starmath/source/smdetect.cxx @@ -66,9 +66,8 @@ using namespace ::com::sun::star::task; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::ucb; -using namespace ::rtl; -SmFilterDetect::SmFilterDetect( const REFERENCE < ::com::sun::star::lang::XMultiServiceFactory >& /*xFactory*/ ) +SmFilterDetect::SmFilterDetect( const Reference < XMultiServiceFactory >& /*xFactory*/ ) { } @@ -76,17 +75,17 @@ SmFilterDetect::~SmFilterDetect() { } -::rtl::OUString SAL_CALL SmFilterDetect::detect( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lDescriptor ) throw( ::com::sun::star::uno::RuntimeException ) +OUString SAL_CALL SmFilterDetect::detect( Sequence< PropertyValue >& lDescriptor ) throw( RuntimeException ) { - REFERENCE< XInputStream > xStream; - REFERENCE< XContent > xContent; - REFERENCE< XInteractionHandler > xInteraction; + Reference< XInputStream > xStream; + Reference< XContent > xContent; + Reference< XInteractionHandler > xInteraction; String aURL; - ::rtl::OUString sTemp; + OUString sTemp; String aTypeName; // a name describing the type (from MediaDescriptor, usually from flat detection) String aPreselectedFilterName; // a name describing the filter to use (from MediaDescriptor, usually from UI action) - ::rtl::OUString aDocumentTitle; // interesting only if set in this method + OUString aDocumentTitle; // interesting only if set in this method // opening as template is done when a parameter tells to do so and a template filter can be detected // (otherwise no valid filter would be found) or if the detected filter is a template filter and @@ -159,12 +158,12 @@ SmFilterDetect::~SmFilterDetect() bWasReadOnly = pItem && pItem->GetValue(); String aFilterName; - String aPrefix = rtl::OUString( "private:factory/" ); + String aPrefix = OUString( "private:factory/" ); if( aURL.Match( aPrefix ) == aPrefix.Len() ) { const SfxFilter* pFilter = 0; String aPattern( aPrefix ); - aPattern += rtl::OUString("smath"); + aPattern += OUString("smath"); if ( aURL.Match( aPattern ) >= aPattern.Len() ) { pFilter = SfxFilter::GetDefaultFilterFromFactory( aURL ); @@ -190,7 +189,7 @@ SmFilterDetect::~SmFilterDetect() if ( bIsStorage ) { //TODO/LATER: factor this out! - uno::Reference < embed::XStorage > xStorage = aMedium.GetStorage( sal_False ); + Reference < embed::XStorage > xStorage = aMedium.GetStorage( sal_False ); if ( aMedium.GetLastStorageCreationState() != ERRCODE_NONE ) { // error during storage creation means _here_ that the medium @@ -203,11 +202,11 @@ SmFilterDetect::~SmFilterDetect() try { InteractiveAppException xException( empty, - REFERENCE< XInterface >(), + Reference< XInterface >(), InteractionClassification_ERROR, aMedium.GetError() ); - REFERENCE< XInteractionRequest > xRequest( + Reference< XInteractionRequest > xRequest( new ucbhelper::SimpleInteractionRequest( makeAny( xException ), ucbhelper::CONTINUATION_APPROVE ) ); xInteraction->handle( xRequest ); @@ -223,13 +222,13 @@ SmFilterDetect::~SmFilterDetect() { const SfxFilter* pFilter = aPreselectedFilterName.Len() ? SfxFilterMatcher().GetFilter4FilterName( aPreselectedFilterName ) : aTypeName.Len() ? - SfxFilterMatcher(rtl::OUString("smath")).GetFilter4EA( aTypeName ) : 0; + SfxFilterMatcher(OUString("smath")).GetFilter4EA( aTypeName ) : 0; OUString aTmpFilterName; if ( pFilter ) aTmpFilterName = pFilter->GetName(); aTypeName = SfxFilter::GetTypeFromStorage( xStorage, pFilter ? pFilter->IsAllowedAsTemplate() : sal_False, &aTmpFilterName ); } - catch( const lang::WrappedTargetException& aWrap ) + catch( const WrappedTargetException& aWrap ) { packages::zip::ZipIOException aZipException; @@ -264,11 +263,11 @@ SmFilterDetect::~SmFilterDetect() aTypeName.Erase(); } } - catch( uno::RuntimeException& ) + catch( RuntimeException& ) { throw; } - catch( uno::Exception& ) + catch( Exception& ) { aTypeName.Erase(); } @@ -276,7 +275,7 @@ SmFilterDetect::~SmFilterDetect() if ( aTypeName.Len() ) { const SfxFilter* pFilter = - SfxFilterMatcher( rtl::OUString("smath") ).GetFilter4EA( aTypeName ); + SfxFilterMatcher( OUString("smath") ).GetFilter4EA( aTypeName ); if ( pFilter ) aFilterName = pFilter->GetName(); } @@ -294,7 +293,7 @@ SmFilterDetect::~SmFilterDetect() SotStorageRef aStorage = new SotStorage ( pStrm, sal_False ); if ( !aStorage->GetError() ) { - if (aStorage->IsStream(rtl::OUString("Equation Native"))) + if (aStorage->IsStream(OUString("Equation Native"))) { sal_uInt8 nVersion; if (GetMathTypeVersion( aStorage, nVersion ) && nVersion <=3) @@ -332,7 +331,7 @@ SmFilterDetect::~SmFilterDetect() if ( aTypeName.Len() ) { - const SfxFilter* pFilt = SfxFilterMatcher( rtl::OUString("smath") ).GetFilter4EA( aTypeName ); + const SfxFilter* pFilt = SfxFilterMatcher( OUString("smath") ).GetFilter4EA( aTypeName ); if ( pFilt ) aFilterName = pFilt->GetName(); } @@ -418,16 +417,16 @@ SmFilterDetect::~SmFilterDetect() } /* XServiceInfo */ -rtl::OUString SAL_CALL SmFilterDetect::getImplementationName() throw( UNORUNTIMEEXCEPTION ) +OUString SAL_CALL SmFilterDetect::getImplementationName() throw( RuntimeException ) { return impl_getStaticImplementationName(); } \ /* XServiceInfo */ -sal_Bool SAL_CALL SmFilterDetect::supportsService( const rtl::OUString& sServiceName ) throw( UNORUNTIMEEXCEPTION ) +sal_Bool SAL_CALL SmFilterDetect::supportsService( const OUString& sServiceName ) throw( RuntimeException ) { - UNOSEQUENCE< rtl::OUString > seqServiceNames = getSupportedServiceNames(); - const rtl::OUString* pArray = seqServiceNames.getConstArray(); + Sequence< OUString > seqServiceNames = getSupportedServiceNames(); + const OUString* pArray = seqServiceNames.getConstArray(); for ( sal_Int32 nCounter=0; nCounter<seqServiceNames.getLength(); nCounter++ ) { if ( pArray[nCounter] == sServiceName ) @@ -439,29 +438,29 @@ sal_Bool SAL_CALL SmFilterDetect::supportsService( const rtl::OUString& sService } /* XServiceInfo */ -UNOSEQUENCE< rtl::OUString > SAL_CALL SmFilterDetect::getSupportedServiceNames() throw( UNORUNTIMEEXCEPTION ) +Sequence< OUString > SAL_CALL SmFilterDetect::getSupportedServiceNames() throw( RuntimeException ) { return impl_getStaticSupportedServiceNames(); } /* Helper for XServiceInfo */ -UNOSEQUENCE< rtl::OUString > SmFilterDetect::impl_getStaticSupportedServiceNames() +Sequence< OUString > SmFilterDetect::impl_getStaticSupportedServiceNames() { - UNOSEQUENCE< rtl::OUString > seqServiceNames( 1 ); + Sequence< OUString > seqServiceNames( 1 ); seqServiceNames.getArray() [0] = "com.sun.star.frame.ExtendedTypeDetection"; return seqServiceNames ; } /* Helper for XServiceInfo */ -rtl::OUString SmFilterDetect::impl_getStaticImplementationName() +OUString SmFilterDetect::impl_getStaticImplementationName() { - return rtl::OUString("com.sun.star.comp.math.FormatDetector"); + return OUString("com.sun.star.comp.math.FormatDetector"); } /* Helper for registry */ -UNOREFERENCE< UNOXINTERFACE > SAL_CALL SmFilterDetect::impl_createInstance( const UNOREFERENCE< UNOXMULTISERVICEFACTORY >& xServiceManager ) throw( UNOEXCEPTION ) +Reference< XInterface > SAL_CALL SmFilterDetect::impl_createInstance( const Reference< XMultiServiceFactory >& xServiceManager ) throw( Exception ) { - return UNOREFERENCE< UNOXINTERFACE >( *new SmFilterDetect( xServiceManager ) ); + return Reference< XInterface >( *new SmFilterDetect( xServiceManager ) ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/starmath/source/smdetect.hxx b/starmath/source/smdetect.hxx index d79dc9e913aa..0cc0a7d769d4 100644 --- a/starmath/source/smdetect.hxx +++ b/starmath/source/smdetect.hxx @@ -51,14 +51,10 @@ namespace com #include <sfx2/sfxuno.hxx> -#define REFERENCE ::com::sun::star::uno::Reference -#define SEQUENCE ::com::sun::star::uno::Sequence -#define RUNTIME_EXCEPTION ::com::sun::star::uno::RuntimeException - -class SmFilterDetect : public ::cppu::WeakImplHelper2< ::com::sun::star::document::XExtendedFilterDetection, ::com::sun::star::lang::XServiceInfo > +class SmFilterDetect : public ::cppu::WeakImplHelper2< css::document::XExtendedFilterDetection, css::lang::XServiceInfo > { public: - SmFilterDetect( const REFERENCE < ::com::sun::star::lang::XMultiServiceFactory >& xFactory ); + SmFilterDetect( const css::uno::Reference < css::lang::XMultiServiceFactory >& xFactory ); virtual ~SmFilterDetect(); SFX_DECL_XSERVICEINFO_NOFACTORY @@ -66,7 +62,7 @@ public: //---------------------------------------------------------------------------------- // XExtendedFilterDetect //---------------------------------------------------------------------------------- - virtual ::rtl::OUString SAL_CALL detect( SEQUENCE< ::com::sun::star::beans::PropertyValue >& lDescriptor ) throw( RUNTIME_EXCEPTION ); + virtual ::rtl::OUString SAL_CALL detect( css::uno::Sequence< css::beans::PropertyValue >& lDescriptor ) throw( css::uno::RuntimeException ); }; #endif |