summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xlpivot.cxx
diff options
context:
space:
mode:
authorChristian M. Heller <christian.heller63@gmail.com>2014-11-11 04:51:00 -0500
committerCaolán McNamara <caolanm@redhat.com>2015-01-14 10:24:52 +0000
commitf276ef3f7f6ecc584b77a196236852bc6ff415cc (patch)
treea63f8c8f0c7385863613f3efe9f02a3c22c86a55 /sc/source/filter/excel/xlpivot.cxx
parentf2efbca82d70451b0e8582bb699f33d709152e24 (diff)
fdo#39468 Translate German Comments - replace '//!' with '//TODO:'
It seems that most comments starting with '//!' were intended as FIXMEs. This replaces gerrit 12241. Conflicts: sc/source/core/tool/token.cxx sc/source/filter/excel/xlpivot.cxx Change-Id: I6ed06b32c70cc854a896dbbc386565e6fbfa9b28 Reviewed-on: https://gerrit.libreoffice.org/12361 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/filter/excel/xlpivot.cxx')
-rw-r--r--sc/source/filter/excel/xlpivot.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/excel/xlpivot.cxx b/sc/source/filter/excel/xlpivot.cxx
index 0813381c1245..9445c19f1380 100644
--- a/sc/source/filter/excel/xlpivot.cxx
+++ b/sc/source/filter/excel/xlpivot.cxx
@@ -62,7 +62,7 @@ void XclPCItem::SetText( const OUString& rText )
void XclPCItem::SetDouble( double fValue )
{
meType = EXC_PCITEM_DOUBLE;
- //! TODO convert double to string
+ //TODO convert double to string
maText.clear();
mfValue = fValue;
}
@@ -70,7 +70,7 @@ void XclPCItem::SetDouble( double fValue )
void XclPCItem::SetDateTime( const DateTime& rDateTime )
{
meType = EXC_PCITEM_DATETIME;
- //! TODO convert date to string
+ //TODO convert date to string
maText.clear();
maDateTime = rDateTime;
}
@@ -103,7 +103,7 @@ void XclPCItem::SetError( sal_uInt16 nError )
void XclPCItem::SetBool( bool bValue )
{
meType = EXC_PCITEM_BOOL;
- //! TODO convert boolean to string
+ //TODO convert boolean to string
maText.clear();
mbValue = bValue;
}
@@ -487,7 +487,7 @@ void XclPTFieldInfo::AddApiOrient( DataPilotFieldOrientation eOrient )
}
}
-//! TODO: should be a Sequence<GeneralFunction> in ScDPSaveData
+//TODO: should be a Sequence<GeneralFunction> in ScDPSaveData
void XclPTFieldInfo::GetSubtotals( XclPTSubtotalVec& rSubtotals ) const
{
rSubtotals.clear();