diff options
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/ScPanelFactory.hxx | 13 | ||||
-rw-r--r-- | sc/inc/validat.hxx | 1 |
2 files changed, 6 insertions, 8 deletions
diff --git a/sc/inc/ScPanelFactory.hxx b/sc/inc/ScPanelFactory.hxx index c3b5ed3ad554..afef80e29d55 100644 --- a/sc/inc/ScPanelFactory.hxx +++ b/sc/inc/ScPanelFactory.hxx @@ -24,7 +24,6 @@ #include <com/sun/star/ui/XUIElementFactory.hpp> #include <boost/noncopyable.hpp> -namespace cssu = ::com::sun::star::uno; namespace sc { namespace sidebar { @@ -42,21 +41,21 @@ class ScPanelFactory { public: static ::rtl::OUString SAL_CALL getImplementationName(void); - static cssu::Reference<cssu::XInterface> SAL_CALL createInstance( - const cssu::Reference<css::lang::XMultiServiceFactory>& rxFactory); - static cssu::Sequence<rtl::OUString> SAL_CALL getSupportedServiceNames(void); + static css::uno::Reference<css::uno::XInterface> SAL_CALL createInstance( + const css::uno::Reference<css::lang::XMultiServiceFactory>& rxFactory); + static css::uno::Sequence<rtl::OUString> SAL_CALL getSupportedServiceNames(void); ScPanelFactory(void); virtual ~ScPanelFactory(void); // XUIElementFactory - cssu::Reference<css::ui::XUIElement> SAL_CALL createUIElement( + css::uno::Reference<css::ui::XUIElement> SAL_CALL createUIElement( const ::rtl::OUString& rsResourceURL, - const ::cssu::Sequence<css::beans::PropertyValue>& rArguments) + const ::css::uno::Sequence<css::beans::PropertyValue>& rArguments) throw( css::container::NoSuchElementException, css::lang::IllegalArgumentException, - cssu::RuntimeException, std::exception ) SAL_OVERRIDE; + css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; }; } } // end of namespace sc::sidebar diff --git a/sc/inc/validat.hxx b/sc/inc/validat.hxx index 5b185cb50e8b..724ea9643a73 100644 --- a/sc/inc/validat.hxx +++ b/sc/inc/validat.hxx @@ -24,7 +24,6 @@ #include <com/sun/star/sheet/TableValidationVisibility.hpp> #include "scdllapi.h" -namespace ValidListType = ::com::sun::star::sheet::TableValidationVisibility; namespace sc { |