summaryrefslogtreecommitdiff
path: root/writerfilter/unocomponent/debugservices/ooxml
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/unocomponent/debugservices/ooxml')
-rw-r--r--writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.cxx44
-rw-r--r--writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.hxx8
-rw-r--r--writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.cxx22
-rw-r--r--writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.hxx6
4 files changed, 40 insertions, 40 deletions
diff --git a/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.cxx b/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.cxx
index 46161e9324b8..8c538014888e 100644
--- a/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.cxx
+++ b/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.cxx
@@ -61,9 +61,9 @@ const sal_Char AnalyzeService::IMPLEMENTATION_NAME[40] = "debugservices.ooxml.An
class URLLister
{
uno::Reference<io::XInputStream> xInputStream;
- rtl::OUString mString;
- rtl::OUString mCRLF;
- rtl::OUString mLF;
+ OUString mString;
+ OUString mCRLF;
+ OUString mLF;
sal_uInt32 getEOLIndex()
{
@@ -79,18 +79,18 @@ class URLLister
public:
URLLister(uno::Reference<com::sun::star::uno::XComponentContext> xContext,
- rtl::OUString absFileUrl)
+ OUString absFileUrl)
{
uno::Reference<ucb::XSimpleFileAccess2> xFileAccess(ucb::SimpleFileAccess::create(xContext));
xInputStream = xFileAccess->openFileRead(absFileUrl) ;
- mLF = rtl::OUString("\n");
- mCRLF = rtl::OUString("\r\n");
+ mLF = OUString("\n");
+ mCRLF = OUString("\r\n");
}
- rtl::OUString getURL()
+ OUString getURL()
{
- rtl::OUString aResult;
+ OUString aResult;
sal_Int32 nIndex = getEOLIndex();
@@ -107,7 +107,7 @@ public:
nCount);
rtl::OString aTmp(pNew);
- rtl::OUString aTail(rtl::OStringToOUString
+ OUString aTail(rtl::OStringToOUString
(aTmp, RTL_TEXTENCODING_ASCII_US));
mString = mString.concat(aTail);
}
@@ -138,12 +138,12 @@ xContext( xContext_ )
}
sal_Int32 SAL_CALL AnalyzeService::run
-( const uno::Sequence< rtl::OUString >& aArguments )
+( const uno::Sequence< OUString >& aArguments )
throw (uno::RuntimeException)
{
uno::Sequence<uno::Any> aUcbInitSequence(2);
- aUcbInitSequence[0] <<= rtl::OUString("Local");
- aUcbInitSequence[1] <<= rtl::OUString("Office");
+ aUcbInitSequence[0] <<= OUString("Local");
+ aUcbInitSequence[1] <<= OUString("Office");
uno::Reference<lang::XMultiServiceFactory>
xServiceFactory(xContext->getServiceManager(), uno::UNO_QUERY_THROW);
uno::Reference<lang::XMultiComponentFactory>
@@ -153,12 +153,12 @@ sal_Int32 SAL_CALL AnalyzeService::run
{
::comphelper::setProcessServiceFactory(xServiceFactory);
- rtl::OUString arg=aArguments[0];
+ OUString arg=aArguments[0];
rtl_uString *dir=NULL;
osl_getProcessWorkingDir(&dir);
- rtl::OUString absFileUrlUrls;
+ OUString absFileUrlUrls;
osl_getAbsoluteFileURL(dir, arg.pData, &absFileUrlUrls.pData);
URLLister aLister(xContext, absFileUrlUrls);
@@ -167,7 +167,7 @@ sal_Int32 SAL_CALL AnalyzeService::run
writerfilter::analyzerIds();
- rtl::OUString aURL = aLister.getURL();
+ OUString aURL = aLister.getURL();
while (!aURL.isEmpty())
{
@@ -245,20 +245,20 @@ sal_Int32 SAL_CALL AnalyzeService::run
return 0;
}
-::rtl::OUString AnalyzeService_getImplementationName ()
+OUString AnalyzeService_getImplementationName ()
{
- return rtl::OUString(AnalyzeService::IMPLEMENTATION_NAME );
+ return OUString(AnalyzeService::IMPLEMENTATION_NAME );
}
-sal_Bool SAL_CALL AnalyzeService_supportsService( const ::rtl::OUString& ServiceName )
+sal_Bool SAL_CALL AnalyzeService_supportsService( const OUString& ServiceName )
{
return ServiceName == AnalyzeService::SERVICE_NAME;
}
-uno::Sequence< rtl::OUString > SAL_CALL AnalyzeService_getSupportedServiceNames( ) throw (uno::RuntimeException)
+uno::Sequence< OUString > SAL_CALL AnalyzeService_getSupportedServiceNames( ) throw (uno::RuntimeException)
{
- uno::Sequence < rtl::OUString > aRet(1);
- rtl::OUString* pArray = aRet.getArray();
- pArray[0] = rtl::OUString(AnalyzeService::SERVICE_NAME );
+ uno::Sequence < OUString > aRet(1);
+ OUString* pArray = aRet.getArray();
+ pArray[0] = OUString(AnalyzeService::SERVICE_NAME );
return aRet;
}
diff --git a/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.hxx b/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.hxx
index 2650be0000c9..36038dcbaf1a 100644
--- a/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.hxx
+++ b/writerfilter/unocomponent/debugservices/ooxml/OOXMLAnalyzeService.hxx
@@ -34,7 +34,7 @@ private:
public:
AnalyzeService(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &xContext);
- virtual ::sal_Int32 SAL_CALL run( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::sal_Int32 SAL_CALL run( const ::com::sun::star::uno::Sequence< OUString >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
public:
const static sal_Char SERVICE_NAME[40];
@@ -42,9 +42,9 @@ public:
};
-::rtl::OUString AnalyzeService_getImplementationName ();
-sal_Bool SAL_CALL AnalyzeService_supportsService( const ::rtl::OUString& ServiceName );
-::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL AnalyzeService_getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
+OUString AnalyzeService_getImplementationName ();
+sal_Bool SAL_CALL AnalyzeService_supportsService( const OUString& ServiceName );
+::com::sun::star::uno::Sequence< OUString > SAL_CALL AnalyzeService_getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL AnalyzeService_createInstance( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &xContext) throw( ::com::sun::star::uno::Exception );
} } /* end namespace writerfilter::rtftok */
diff --git a/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.cxx b/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.cxx
index 1a9c434b9855..92d0144aa518 100644
--- a/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.cxx
+++ b/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.cxx
@@ -72,11 +72,11 @@ xContext( xContext_ )
{
}
-sal_Int32 SAL_CALL ScannerTestService::run( const uno::Sequence< rtl::OUString >& aArguments ) throw (uno::RuntimeException)
+sal_Int32 SAL_CALL ScannerTestService::run( const uno::Sequence< OUString >& aArguments ) throw (uno::RuntimeException)
{
uno::Sequence<uno::Any> aUcbInitSequence(2);
- aUcbInitSequence[0] <<= rtl::OUString("Local");
- aUcbInitSequence[1] <<= rtl::OUString("Office");
+ aUcbInitSequence[0] <<= OUString("Local");
+ aUcbInitSequence[1] <<= OUString("Office");
uno::Reference<lang::XMultiServiceFactory> xServiceFactory(xContext->getServiceManager(), uno::UNO_QUERY_THROW);
uno::Reference<lang::XMultiComponentFactory> xFactory(xContext->getServiceManager(), uno::UNO_QUERY_THROW );
if (::ucbhelper::ContentBroker::initialize(xServiceFactory, aUcbInitSequence))
@@ -87,7 +87,7 @@ sal_Int32 SAL_CALL ScannerTestService::run( const uno::Sequence< rtl::OUString >
debugLogger->startDocument();
#endif
- rtl::OUString arg=aArguments[0];
+ OUString arg=aArguments[0];
::comphelper::setProcessServiceFactory(xServiceFactory);
@@ -95,7 +95,7 @@ sal_Int32 SAL_CALL ScannerTestService::run( const uno::Sequence< rtl::OUString >
rtl_uString *dir=NULL;
osl_getProcessWorkingDir(&dir);
- rtl::OUString absFileUrl;
+ OUString absFileUrl;
osl_getAbsoluteFileURL(dir, arg.pData, &absFileUrl.pData);
rtl_uString_release(dir);
@@ -123,16 +123,16 @@ sal_Int32 SAL_CALL ScannerTestService::run( const uno::Sequence< rtl::OUString >
return 0;
}
-::rtl::OUString ScannerTestService_getImplementationName ()
+OUString ScannerTestService_getImplementationName ()
{
- return rtl::OUString(ScannerTestService::IMPLEMENTATION_NAME );
+ return OUString(ScannerTestService::IMPLEMENTATION_NAME );
}
-uno::Sequence< rtl::OUString > SAL_CALL ScannerTestService_getSupportedServiceNames( ) throw (uno::RuntimeException)
+uno::Sequence< OUString > SAL_CALL ScannerTestService_getSupportedServiceNames( ) throw (uno::RuntimeException)
{
- uno::Sequence < rtl::OUString > aRet(1);
- rtl::OUString* pArray = aRet.getArray();
- pArray[0] = rtl::OUString(ScannerTestService::SERVICE_NAME );
+ uno::Sequence < OUString > aRet(1);
+ OUString* pArray = aRet.getArray();
+ pArray[0] = OUString(ScannerTestService::SERVICE_NAME );
return aRet;
}
diff --git a/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.hxx b/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.hxx
index 8283540790d2..a2de044e4730 100644
--- a/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.hxx
+++ b/writerfilter/unocomponent/debugservices/ooxml/OOXMLTestService.hxx
@@ -34,7 +34,7 @@ private:
public:
ScannerTestService(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &xContext);
- virtual ::sal_Int32 SAL_CALL run( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::sal_Int32 SAL_CALL run( const ::com::sun::star::uno::Sequence< OUString >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
public:
const static sal_Char SERVICE_NAME[40];
@@ -42,8 +42,8 @@ public:
};
-::rtl::OUString ScannerTestService_getImplementationName ();
-::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL ScannerTestService_getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
+OUString ScannerTestService_getImplementationName ();
+::com::sun::star::uno::Sequence< OUString > SAL_CALL ScannerTestService_getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ScannerTestService_createInstance( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &xContext) throw( ::com::sun::star::uno::Exception );
} } /* end namespace writerfilter::ooxml */