summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2019-02-02 02:01:05 +0000
committerEike Rathke <erack@redhat.com>2019-02-02 16:35:57 +0100
commitfe8d62dc89b5de2a720b30a64a1a6a7e7d47344f (patch)
tree1eb303a05b91a7447f30eb4dac79978bf5ed7db6
parent1204af25fde368cfd3539915dc6cc4edcecec041 (diff)
Remove obsolete TODO comments
The comments were introduced with commit 87ec4dbf4ad505c9e908db59144a6d41ecd89b5c, but didn't have any further explanations. Change-Id: I4519037361f3f4c961e4455a766917c1a061288f Reviewed-on: https://gerrit.libreoffice.org/67271 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r--sc/source/ui/unoobj/dapiuno.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/dapiuno.cxx b/sc/source/ui/unoobj/dapiuno.cxx
index e9bc8db1be47..ca1ddda16cc8 100644
--- a/sc/source/ui/unoobj/dapiuno.cxx
+++ b/sc/source/ui/unoobj/dapiuno.cxx
@@ -1629,7 +1629,6 @@ static bool lcl_GetFieldDataByName( ScDPObject* pDPObj, const OUString& rFieldNa
ScDataPilotFieldObj* ScDataPilotFieldsObj::GetObjectByIndex_Impl( sal_Int32 nIndex ) const
{
-// TODO
if (ScDPObject* pObj = GetDPObject())
{
ScFieldIdentifier aFieldId;
@@ -1663,7 +1662,6 @@ Reference<XEnumeration> SAL_CALL ScDataPilotFieldsObj::createEnumeration()
sal_Int32 SAL_CALL ScDataPilotFieldsObj::getCount()
{
SolarMutexGuard aGuard;
-// TODO
ScDPObject* pDPObj = GetDPObject();
return pDPObj ? lcl_GetFieldCount( pDPObj->GetSource(), maOrient ) : 0;
}
@@ -1705,7 +1703,6 @@ Any SAL_CALL ScDataPilotFieldsObj::getByName( const OUString& aName )
Sequence<OUString> SAL_CALL ScDataPilotFieldsObj::getElementNames()
{
SolarMutexGuard aGuard;
-// TODO
if (ScDPObject* pDPObj = GetDPObject())
{
Sequence< OUString > aSeq( lcl_GetFieldCount( pDPObj->GetSource(), maOrient ) );