summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filprp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-09 11:05:53 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-09 11:14:44 +0000
commita3db4959b07d2454fba7774f04c7658ae4fba783 (patch)
treefb9853e4158d2b39fd80c302b54440cf56e654f8 /ucb/source/ucp/file/filprp.hxx
parente31205f3ec1f941ab5a188bfde6329edf2acc55b (diff)
com::sun::star->css in tools/ and ucb/
Change-Id: I695ff721efd63b8ca0dd3c61ba5a4fef2c43cde6 Reviewed-on: https://gerrit.libreoffice.org/19854 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb/source/ucp/file/filprp.hxx')
-rw-r--r--ucb/source/ucp/file/filprp.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/ucb/source/ucp/file/filprp.hxx b/ucb/source/ucp/file/filprp.hxx
index b3c53ea1ae64..ecb92c8eb7a1 100644
--- a/ucb/source/ucp/file/filprp.hxx
+++ b/ucb/source/ucp/file/filprp.hxx
@@ -33,30 +33,30 @@ class XPropertySetInfo_impl : public cppu::WeakImplHelper<
{
public:
XPropertySetInfo_impl( shell* pMyShell,const OUString& aUnqPath );
- XPropertySetInfo_impl( shell* pMyShell,const com::sun::star::uno::Sequence< com::sun::star::beans::Property >& seq );
+ XPropertySetInfo_impl( shell* pMyShell,const css::uno::Sequence< css::beans::Property >& seq );
virtual ~XPropertySetInfo_impl();
- virtual com::sun::star::uno::Sequence< com::sun::star::beans::Property > SAL_CALL
+ virtual css::uno::Sequence< css::beans::Property > SAL_CALL
getProperties(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception ) override;
+ throw( css::uno::RuntimeException, std::exception ) override;
- virtual com::sun::star::beans::Property SAL_CALL
+ virtual css::beans::Property SAL_CALL
getPropertyByName(
const OUString& aName )
- throw( com::sun::star::beans::UnknownPropertyException,
- com::sun::star::uno::RuntimeException, std::exception) override;
+ throw( css::beans::UnknownPropertyException,
+ css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
hasPropertyByName( const OUString& Name )
- throw( com::sun::star::uno::RuntimeException, std::exception ) override;
+ throw( css::uno::RuntimeException, std::exception ) override;
private:
shell* m_pMyShell;
- com::sun::star::uno::Reference< com::sun::star::ucb::XContentProvider > m_xProvider;
+ css::uno::Reference< css::ucb::XContentProvider > m_xProvider;
sal_Int32 m_count;
- com::sun::star::uno::Sequence< com::sun::star::beans::Property > m_seq;
+ css::uno::Sequence< css::beans::Property > m_seq;
};
}