summaryrefslogtreecommitdiff
path: root/svl/source/numbers/numuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/numbers/numuno.cxx')
-rw-r--r--svl/source/numbers/numuno.cxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/svl/source/numbers/numuno.cxx b/svl/source/numbers/numuno.cxx
index 8e5b4a164e38..b2436c252808 100644
--- a/svl/source/numbers/numuno.cxx
+++ b/svl/source/numbers/numuno.cxx
@@ -26,7 +26,6 @@
using namespace com::sun::star;
-//------------------------------------------------------------------------
class SvNumFmtSuppl_Impl
{
@@ -38,9 +37,8 @@ public:
pFormatter(p) {}
};
-//------------------------------------------------------------------------
-// Default-ctor fuer getReflection
+// Default ctor for getReflection
SvNumberFormatsSupplierObj::SvNumberFormatsSupplierObj()
{
pImpl = new SvNumFmtSuppl_Impl(NULL);
@@ -68,18 +66,18 @@ SvNumberFormatter* SvNumberFormatsSupplierObj::GetNumberFormatter() const
void SvNumberFormatsSupplierObj::SetNumberFormatter(SvNumberFormatter* pNew)
{
- // der alte Numberformatter ist ungueltig geworden, nicht mehr darauf zugreifen!
+ // The old Numberformatter has been retired, do not access it anymore!
pImpl->pFormatter = pNew;
}
void SvNumberFormatsSupplierObj::NumberFormatDeleted(sal_uInt32)
{
- // Basis-Implementierung tut nix...
+ // Base implementation; does nothing
}
void SvNumberFormatsSupplierObj::SettingsChanged()
{
- // Basis-Implementierung tut nix...
+ // Base implementation; does nothing
}
// XNumberFormatsSupplier
@@ -136,9 +134,4 @@ SvNumberFormatsSupplierObj* SvNumberFormatsSupplierObj::getImplementation(
return pRet;
}
-
-//------------------------------------------------------------------------
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */