summaryrefslogtreecommitdiffstats
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-12-15 18:23:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-12-17 09:35:25 +0000
commit68d421bdac59295bf91457def4cc041ea5c3d8d0 (patch)
tree543f5fef4389e223073e23ca04ff5685620c0ae0 /sc
parentUniString::Fill -> OUStringBuffer::padToLength (diff)
downloadcore-68d421bdac59295bf91457def4cc041ea5c3d8d0.tar.gz
core-68d421bdac59295bf91457def4cc041ea5c3d8d0.zip
callcatcher: update unusedcode code list
Change-Id: I3ba30e0745c8f2adac29a6c4ff15a8156cee4baf
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/dpobject.hxx2
-rw-r--r--sc/source/core/data/dpobject.cxx89
-rw-r--r--sc/source/core/data/dptabsrc.cxx2
-rw-r--r--sc/source/filter/inc/formulabase.hxx10
-rw-r--r--sc/source/filter/oox/formulabase.cxx8
-rw-r--r--sc/source/ui/cctrl/checklistmenu.cxx5
-rw-r--r--sc/source/ui/inc/checklistmenu.hxx2
7 files changed, 1 insertions, 117 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx
index ea7fb3a5f1cd..b74db73e0266 100644
--- a/sc/inc/dpobject.hxx
+++ b/sc/inc/dpobject.hxx
@@ -193,8 +193,6 @@ public:
void GetMemberResultNames(ScDPUniqueStringSet& rNames, long nDimension);
- void FillPageList( std::vector<rtl::OUString>& rStrings, long nField );
-
void ToggleDetails(const ::com::sun::star::sheet::DataPilotTableHeaderData& rElemDesc, ScDPObject* pDestObj);
bool FillOldParam(ScPivotParam& rParam) const;
diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx
index e55a9c864422..3c433783b242 100644
--- a/sc/source/core/data/dpobject.cxx
+++ b/sc/source/core/data/dpobject.cxx
@@ -1170,95 +1170,6 @@ long ScDPObject::GetDimCount()
return nRet;
}
-void ScDPObject::FillPageList( std::vector<rtl::OUString>& rStrings, long nField )
-{
- //! merge members access with ToggleDetails?
-
- //! convert field index to dimension index?
-
- OSL_ENSURE( xSource.is(), "no source" );
- if ( !xSource.is() ) return;
-
- uno::Reference<container::XNamed> xDim;
- uno::Reference<container::XNameAccess> xDimsName = xSource->getDimensions();
- uno::Reference<container::XIndexAccess> xIntDims = new ScNameToIndexAccess( xDimsName );
- long nIntCount = xIntDims->getCount();
- if ( nField < nIntCount )
- {
- uno::Reference<uno::XInterface> xIntDim = ScUnoHelpFunctions::AnyToInterface(
- xIntDims->getByIndex(nField) );
- xDim = uno::Reference<container::XNamed>( xIntDim, uno::UNO_QUERY );
- }
- OSL_ENSURE( xDim.is(), "dimension not found" );
- if ( !xDim.is() ) return;
-
- uno::Reference<beans::XPropertySet> xDimProp( xDim, uno::UNO_QUERY );
- long nHierarchy = ScUnoHelpFunctions::GetLongProperty( xDimProp,
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNO_DP_USEDHIERARCHY)) );
- long nLevel = 0;
-
- long nHierCount = 0;
- uno::Reference<container::XIndexAccess> xHiers;
- uno::Reference<sheet::XHierarchiesSupplier> xHierSupp( xDim, uno::UNO_QUERY );
- if ( xHierSupp.is() )
- {
- uno::Reference<container::XNameAccess> xHiersName = xHierSupp->getHierarchies();
- xHiers = new ScNameToIndexAccess( xHiersName );
- nHierCount = xHiers->getCount();
- }
- uno::Reference<uno::XInterface> xHier;
- if ( nHierarchy < nHierCount )
- xHier = ScUnoHelpFunctions::AnyToInterface( xHiers->getByIndex(nHierarchy) );
- OSL_ENSURE( xHier.is(), "hierarchy not found" );
- if ( !xHier.is() ) return;
-
- long nLevCount = 0;
- uno::Reference<container::XIndexAccess> xLevels;
- uno::Reference<sheet::XLevelsSupplier> xLevSupp( xHier, uno::UNO_QUERY );
- if ( xLevSupp.is() )
- {
- uno::Reference<container::XNameAccess> xLevsName = xLevSupp->getLevels();
- xLevels = new ScNameToIndexAccess( xLevsName );
- nLevCount = xLevels->getCount();
- }
- uno::Reference<uno::XInterface> xLevel;
- if ( nLevel < nLevCount )
- xLevel = ScUnoHelpFunctions::AnyToInterface( xLevels->getByIndex(nLevel) );
- OSL_ENSURE( xLevel.is(), "level not found" );
- if ( !xLevel.is() ) return;
-
- uno::Reference<container::XNameAccess> xMembers;
- uno::Reference<sheet::XMembersSupplier> xMbrSupp( xLevel, uno::UNO_QUERY );
- if ( xMbrSupp.is() )
- xMembers = xMbrSupp->getMembers();
- OSL_ENSURE( xMembers.is(), "members not found" );
- if ( !xMembers.is() ) return;
-
- uno::Sequence<rtl::OUString> aNames = xMembers->getElementNames();
- long nNameCount = aNames.getLength();
- const rtl::OUString* pNameArr = aNames.getConstArray();
- for (long nPos = 0; nPos < nNameCount; ++nPos)
- {
- // Make sure to insert only visible members.
- Reference<XPropertySet> xPropSet(xMembers->getByName(pNameArr[nPos]), UNO_QUERY);
- sal_Bool bVisible = false;
- if (xPropSet.is())
- {
- Any any = xPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM(SC_UNO_DP_ISVISIBLE)));
- any >>= bVisible;
- }
-
- if (bVisible)
- {
- // use the order from getElementNames
- rStrings.push_back(pNameArr[nPos]);
- }
- }
-
- // add "-all-" entry to the top (unsorted)
- rStrings.insert(rStrings.begin(), SC_RESSTR(SCSTR_ALL));
-}
-
void ScDPObject::GetHeaderPositionData(const ScAddress& rPos, DataPilotTableHeaderData& rData)
{
using namespace ::com::sun::star::sheet::DataPilotTablePositionType;
diff --git a/sc/source/core/data/dptabsrc.cxx b/sc/source/core/data/dptabsrc.cxx
index b2d9895a0c62..88d5fdb961a5 100644
--- a/sc/source/core/data/dptabsrc.cxx
+++ b/sc/source/core/data/dptabsrc.cxx
@@ -1433,7 +1433,7 @@ const ScDPItemData& ScDPDimension::GetSelectedData()
{
// find the named member to initialize pSelectedData from it, with name and value
- long nLevel = 0; // same as in ScDPObject::FillPageList
+ long nLevel = 0;
long nHierarchy = getUsedHierarchy();
if ( nHierarchy >= GetHierarchiesObject()->getCount() )
diff --git a/sc/source/filter/inc/formulabase.hxx b/sc/source/filter/inc/formulabase.hxx
index 342e5338791b..8fbe09d60679 100644
--- a/sc/source/filter/inc/formulabase.hxx
+++ b/sc/source/filter/inc/formulabase.hxx
@@ -653,16 +653,6 @@ public:
const BinAddress& rAddress,
bool bAbsolute );
- /** Generates a cell range string in A1:A1 notation from the passed binary
- cell range address.
-
- @param rRange The cell range address containing column and row indexes.
- @param bAbsolute True = adds dollar signs before columns and rows.
- */
- static ::rtl::OUString generateRange2dString(
- const BinRange& rRange,
- bool bAbsolute );
-
// ------------------------------------------------------------------------
/** Generates a string in Calc formula notation from the passed string.
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx
index e7060ce5a337..e9796f8bd68c 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -1430,14 +1430,6 @@ OUString FormulaProcessorBase::generateAddress2dString( const BinAddress& rAddre
return aBuffer.makeStringAndClear();
}
-OUString FormulaProcessorBase::generateRange2dString( const BinRange& rRange, bool bAbsolute )
-{
- OUStringBuffer aBuffer( generateAddress2dString( rRange.maFirst, bAbsolute ) );
- if( (rRange.getColCount() > 1) || (rRange.getRowCount() > 1) )
- aBuffer.append( sal_Unicode( ':' ) ).append( generateAddress2dString( rRange.maLast, bAbsolute ) );
- return aBuffer.makeStringAndClear();
-}
-
// ----------------------------------------------------------------------------
OUString FormulaProcessorBase::generateApiString( const OUString& rString )
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx
index ccc47c029e64..b125c013e2cc 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -1319,11 +1319,6 @@ void ScCheckListMenuWindow::setConfig(const Config& rConfig)
maConfig = rConfig;
}
-const Size& ScCheckListMenuWindow::getWindowSize() const
-{
- return maWndSize;
-}
-
bool ScCheckListMenuWindow::isAllSelected() const
{
return maChkToggleAll.IsChecked();
diff --git a/sc/source/ui/inc/checklistmenu.hxx b/sc/source/ui/inc/checklistmenu.hxx
index cabddc553dc3..1a36ae54f540 100644
--- a/sc/source/ui/inc/checklistmenu.hxx
+++ b/sc/source/ui/inc/checklistmenu.hxx
@@ -244,8 +244,6 @@ public:
void initMembers();
void setConfig(const Config& rConfig);
- const Size& getWindowSize() const;
-
bool isAllSelected() const;
void getResult(ResultType& rResult);
void launch(const Rectangle& rRect);