summaryrefslogtreecommitdiff
path: root/sc/inc/cursuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-27 14:20:54 +0200
committerNoel Grandin <noel@peralex.com>2015-10-28 09:22:34 +0200
commit16246ed7b280f51a39a01ded24c0d7bd59d59365 (patch)
treee506c24eeae16b384555f08818e0b62ba41e0285 /sc/inc/cursuno.hxx
parent5d3c37b99e8bfa9256f12015152439bf4e5ebbb4 (diff)
com::sun::star->css in sc
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
Diffstat (limited to 'sc/inc/cursuno.hxx')
-rw-r--r--sc/inc/cursuno.hxx74
1 files changed, 37 insertions, 37 deletions
diff --git a/sc/inc/cursuno.hxx b/sc/inc/cursuno.hxx
index 2a2fbe0ea838..b75717521bd5 100644
--- a/sc/inc/cursuno.hxx
+++ b/sc/inc/cursuno.hxx
@@ -26,77 +26,77 @@
#include <com/sun/star/sheet/XUsedAreaCursor.hpp>
class ScCellCursorObj : public ScCellRangeObj,
- public com::sun::star::sheet::XSheetCellCursor,
- public com::sun::star::sheet::XUsedAreaCursor,
- public com::sun::star::table::XCellCursor
+ public css::sheet::XSheetCellCursor,
+ public css::sheet::XUsedAreaCursor,
+ public css::table::XCellCursor
{
public:
ScCellCursorObj(ScDocShell* pDocSh, const ScRange& rR);
virtual ~ScCellCursorObj();
- virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(
- const ::com::sun::star::uno::Type & rType )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL queryInterface(
+ const css::uno::Type & rType )
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL acquire() throw() override;
virtual void SAL_CALL release() throw() override;
// XSheetCellCursor
- virtual void SAL_CALL collapseToCurrentRegion() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL collapseToCurrentRegion() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL collapseToCurrentArray()
- throw(::com::sun::star::uno::RuntimeException,
+ throw(css::uno::RuntimeException,
std::exception) override;
- virtual void SAL_CALL collapseToMergedArea() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL expandToEntireColumns() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL expandToEntireRows() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL collapseToMergedArea() throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL expandToEntireColumns() throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL expandToEntireRows() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL collapseToSize( sal_Int32 nColumns, sal_Int32 nRows )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XUsedAreaCursor
virtual void SAL_CALL gotoStartOfUsedArea( sal_Bool bExpand )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL gotoEndOfUsedArea( sal_Bool bExpand )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XCellCursor
- virtual void SAL_CALL gotoStart() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL gotoEnd() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL gotoNext() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL gotoPrevious() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL gotoStart() throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL gotoEnd() throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL gotoNext() throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL gotoPrevious() throw(css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL gotoOffset( sal_Int32 nColumnOffset, sal_Int32 nRowOffset )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XSheetCellRange
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSpreadsheet > SAL_CALL
- getSpreadsheet() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::sheet::XSpreadsheet > SAL_CALL
+ getSpreadsheet() throw(css::uno::RuntimeException, std::exception) override;
// XCellRange
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCell > SAL_CALL
+ virtual css::uno::Reference< css::table::XCell > SAL_CALL
getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow )
- throw(::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL
+ throw(css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Reference< css::table::XCellRange > SAL_CALL
getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop,
sal_Int32 nRight, sal_Int32 nBottom )
- throw(::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException, std::exception) override;
using ScCellRangeObj::getCellRangeByName;
- virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL
+ virtual css::uno::Reference< css::table::XCellRange > SAL_CALL
getCellRangeByName( const OUString& aRange )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
+ throw(css::uno::RuntimeException, std::exception) override;
// XTypeProvider
- virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
- throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes()
+ throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
+ throw(css::uno::RuntimeException, std::exception) override;
};
#endif