summaryrefslogtreecommitdiff
path: root/filter/source/xmlfilterdetect
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 14:17:06 +0200
committerNoel Grandin <noel@peralex.com>2015-10-01 12:20:41 +0200
commitbd8a4ae22376cf9e43df3f4924d37daa8a0796c1 (patch)
tree0c60a496c0570a08d953c093e6cc34e0d8d198b5 /filter/source/xmlfilterdetect
parentf1de3e14df9665ce48d676ac6f3439506d2b81f2 (diff)
com::sun::star->css in filter/
Change-Id: I3a5e6a349c903259698118542b0000b0f119859e
Diffstat (limited to 'filter/source/xmlfilterdetect')
-rw-r--r--filter/source/xmlfilterdetect/filterdetect.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/xmlfilterdetect/filterdetect.cxx b/filter/source/xmlfilterdetect/filterdetect.cxx
index ea86801f36de..81d639bd6886 100644
--- a/filter/source/xmlfilterdetect/filterdetect.cxx
+++ b/filter/source/xmlfilterdetect/filterdetect.cxx
@@ -51,13 +51,13 @@ OUString supportedByType( const OUString& clipBoardFormat, const OUString& resu
}
-OUString SAL_CALL FilterDetect::detect( com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& aArguments ) throw( com::sun::star::uno::RuntimeException, std::exception )
+OUString SAL_CALL FilterDetect::detect( css::uno::Sequence< css::beans::PropertyValue >& aArguments ) throw( css::uno::RuntimeException, std::exception )
{
OUString sTypeName;
OUString sUrl;
Sequence<PropertyValue > lProps ;
- com::sun::star::uno::Reference< com::sun::star::io::XInputStream > xInStream;
+ css::uno::Reference< css::io::XInputStream > xInStream;
const PropertyValue * pValue = aArguments.getConstArray();
sal_Int32 nLength;
OUString resultString;
@@ -84,7 +84,7 @@ OUString SAL_CALL FilterDetect::detect( com::sun::star::uno::Sequence< com::sun:
if (!xInStream.is())
{
::ucbhelper::Content aContent(
- sUrl, Reference< com::sun::star::ucb::XCommandEnvironment >(),
+ sUrl, Reference< css::ucb::XCommandEnvironment >(),
mxCtx);
xInStream = aContent.openStream();
if (!xInStream.is())