summaryrefslogtreecommitdiff
path: root/framework/inc/uielement/statusindicatorinterfacewrapper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/uielement/statusindicatorinterfacewrapper.hxx')
-rw-r--r--framework/inc/uielement/statusindicatorinterfacewrapper.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/framework/inc/uielement/statusindicatorinterfacewrapper.hxx b/framework/inc/uielement/statusindicatorinterfacewrapper.hxx
index e3df5db68424..10370a83d50d 100644
--- a/framework/inc/uielement/statusindicatorinterfacewrapper.hxx
+++ b/framework/inc/uielement/statusindicatorinterfacewrapper.hxx
@@ -36,25 +36,25 @@
namespace framework
{
-class StatusIndicatorInterfaceWrapper : public ::cppu::WeakImplHelper< ::com::sun::star::task::XStatusIndicator>
+class StatusIndicatorInterfaceWrapper : public ::cppu::WeakImplHelper< css::task::XStatusIndicator>
{
public:
- StatusIndicatorInterfaceWrapper( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& rStatusIndicatorImpl );
+ StatusIndicatorInterfaceWrapper( const css::uno::Reference< css::lang::XComponent >& rStatusIndicatorImpl );
virtual ~StatusIndicatorInterfaceWrapper();
// XStatusIndicator
virtual void SAL_CALL start ( const OUString& sText ,
- sal_Int32 nRange ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
- virtual void SAL_CALL end ( ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
- virtual void SAL_CALL reset ( ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
- virtual void SAL_CALL setText ( const OUString& sText ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
- virtual void SAL_CALL setValue( sal_Int32 nValue ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) override;
+ sal_Int32 nRange ) throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL end ( ) throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL reset ( ) throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setText ( const OUString& sText ) throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setValue( sal_Int32 nValue ) throw( css::uno::RuntimeException, std::exception ) override;
private:
StatusIndicatorInterfaceWrapper();
- ::com::sun::star::uno::WeakReference< ::com::sun::star::lang::XComponent > m_xStatusIndicatorImpl;
+ css::uno::WeakReference< css::lang::XComponent > m_xStatusIndicatorImpl;
};
}