summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filcmd.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filcmd.hxx')
-rw-r--r--ucb/source/ucp/file/filcmd.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/ucb/source/ucp/file/filcmd.hxx b/ucb/source/ucp/file/filcmd.hxx
index 27daba8a6b1f..c0d22df40c66 100644
--- a/ucb/source/ucp/file/filcmd.hxx
+++ b/ucb/source/ucp/file/filcmd.hxx
@@ -35,7 +35,7 @@ namespace fileaccess {
class XCommandInfo_impl
: public cppu::OWeakObject,
- public com::sun::star::ucb::XCommandInfo
+ public css::ucb::XCommandInfo
{
public:
@@ -44,10 +44,10 @@ namespace fileaccess {
virtual ~XCommandInfo_impl();
// XInterface
- virtual com::sun::star::uno::Any SAL_CALL
+ virtual css::uno::Any SAL_CALL
queryInterface(
- const com::sun::star::uno::Type& aType )
- throw( com::sun::star::uno::RuntimeException, std::exception) override;
+ const css::uno::Type& aType )
+ throw( css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
acquire(
@@ -61,38 +61,38 @@ namespace fileaccess {
// XCommandInfo
- virtual com::sun::star::uno::Sequence< com::sun::star::ucb::CommandInfo > SAL_CALL
+ virtual css::uno::Sequence< css::ucb::CommandInfo > SAL_CALL
getCommands(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception) override;
+ throw( css::uno::RuntimeException, std::exception) override;
- virtual com::sun::star::ucb::CommandInfo SAL_CALL
+ virtual css::ucb::CommandInfo SAL_CALL
getCommandInfoByName(
const OUString& Name )
- throw( com::sun::star::ucb::UnsupportedCommandException,
- com::sun::star::uno::RuntimeException, std::exception) override;
+ throw( css::ucb::UnsupportedCommandException,
+ css::uno::RuntimeException, std::exception) override;
- virtual com::sun::star::ucb::CommandInfo SAL_CALL
+ virtual css::ucb::CommandInfo SAL_CALL
getCommandInfoByHandle(
sal_Int32 Handle )
- throw( com::sun::star::ucb::UnsupportedCommandException,
- com::sun::star::uno::RuntimeException, std::exception ) override;
+ throw( css::ucb::UnsupportedCommandException,
+ css::uno::RuntimeException, std::exception ) override;
virtual sal_Bool SAL_CALL
hasCommandByName(
const OUString& Name )
- throw( com::sun::star::uno::RuntimeException, std::exception ) override;
+ throw( css::uno::RuntimeException, std::exception ) override;
virtual sal_Bool SAL_CALL
hasCommandByHandle(
sal_Int32 Handle )
- 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;
+ shell* m_pMyShell;
+ css::uno::Reference< css::ucb::XContentProvider > m_xProvider;
};
}