summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/unitconv.cxx
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-09-05 17:39:16 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-09-10 17:31:15 +0000
commitd2ddff7b355fac5ba7ec93f866ea52f462dbc6fe (patch)
tree69e7f3983c9ed1ed7af7a1af762dd2d2809d3e6a /sc/source/core/tool/unitconv.cxx
parent7dc7d77cd0b142ea3fde93368334d1e4909d94da (diff)
fdo#62475 removed pointless comments
Conflicts: sc/source/core/tool/interpr1.cxx sc/source/core/tool/interpr4.cxx sc/source/core/tool/token.cxx Change-Id: I507d747b6c087d089203f7bce6be836da28fc537 Reviewed-on: https://gerrit.libreoffice.org/5824 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sc/source/core/tool/unitconv.cxx')
-rw-r--r--sc/source/core/tool/unitconv.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/sc/source/core/tool/unitconv.cxx b/sc/source/core/tool/unitconv.cxx
index 17fe72f5fdfe..883d02d98c69 100644
--- a/sc/source/core/tool/unitconv.cxx
+++ b/sc/source/core/tool/unitconv.cxx
@@ -27,14 +27,9 @@
using namespace utl;
using namespace com::sun::star::uno;
-
-// --------------------------------------------------------------------
-
const sal_Unicode cDelim = 0x01; // Delimiter zwischen From und To
-
-// --- ScUnitConverterData --------------------------------------------
-
+// ScUnitConverterData
ScUnitConverterData::ScUnitConverterData(
const OUString& rFromUnit, const OUString& rToUnit, double fValue ) :
maIndexString(BuildIndexString(rFromUnit, rToUnit)),
@@ -65,8 +60,7 @@ OUString ScUnitConverterData::BuildIndexString(
return aBuf.makeStringAndClear();
}
-// --- ScUnitConverter ------------------------------------------------
-
+// ScUnitConverter
#define CFGPATH_UNIT "Office.Calc/UnitConversion"
#define CFGSTR_UNIT_FROM "FromUnit"
#define CFGSTR_UNIT_TO "ToUnit"
@@ -147,5 +141,4 @@ bool ScUnitConverter::GetValue(
return true;
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */