From 979365cde84c3974e17d345d9786623a4b97f0c3 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 17 Apr 2011 15:47:21 +0200 Subject: [PATCH] Some cppcheck cleaning --- sc/source/core/data/table3.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 0335f96c0ecc..b87f74863437 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -263,10 +263,10 @@ public: ppInfo[n2] = pTmp; } } - sal_uInt16 GetUsedSorts() { return nUsedSorts; } - ScSortInfo** GetFirstArray() { return pppInfo[0]; } - SCCOLROW GetStart() { return nStart; } - SCSIZE GetCount() { return nCount; } + sal_uInt16 GetUsedSorts() const { return nUsedSorts; } + ScSortInfo** GetFirstArray() const { return pppInfo[0]; } + SCCOLROW GetStart() const { return nStart; } + SCSIZE GetCount() const { return nCount; } }; ScSortInfoArray* ScTable::CreateSortInfoArray( SCCOLROW nInd1, SCCOLROW nInd2 )