diff options
author | Philipp Riemer <ruderphilipp@gmail.com> | 2013-08-31 22:30:22 +0200 |
---|---|---|
committer | Philipp Riemer <ruderphilipp@gmail.com> | 2013-08-31 22:41:12 +0200 |
commit | f212aa9f84246f9bc1feb3b169885c5e717a10cd (patch) | |
tree | c2f8dfc5576a37c9881d0d024a89bbc2fe8d5ff9 /svtools | |
parent | 8d6da3b8aed0b523375e00eb5b5e3c2b4ca89edf (diff) |
fix existing comments
Change-Id: I06dca63053dae5d3dceb49bf67adb0c100b56e8b
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/fmtfield.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/control/fmtfield.cxx b/svtools/source/control/fmtfield.cxx index a7368e1601ed..1749424dc131 100644 --- a/svtools/source/control/fmtfield.cxx +++ b/svtools/source/control/fmtfield.cxx @@ -660,7 +660,7 @@ sal_Bool FormattedField::SetFormat(const OUString& rFormatString, LanguageType e sal_Bool FormattedField::GetThousandsSep() const { DBG_ASSERT(!ImplGetFormatter()->IsTextFormat(m_nFormatKey), - "FormattedField::GetThousandsSep : your'e sure what your'e doing when setting the precision of a text format ?"); + "FormattedField::GetThousandsSep : Are you sure what you are doing when setting the precision of a text format?"); bool bThousand, IsRed; sal_uInt16 nPrecision, nAnzLeading; @@ -672,7 +672,7 @@ sal_Bool FormattedField::GetThousandsSep() const void FormattedField::SetThousandsSep(sal_Bool _bUseSeparator) { DBG_ASSERT(!ImplGetFormatter()->IsTextFormat(m_nFormatKey), - "FormattedField::SetThousandsSep : your'e sure what your'e doing when setting the precision of a text format ?"); + "FormattedField::SetThousandsSep : Are you sure what you are doing when setting the precision of a text format?"); // get the current settings bool bThousand, IsRed; @@ -701,7 +701,7 @@ void FormattedField::SetThousandsSep(sal_Bool _bUseSeparator) sal_uInt16 FormattedField::GetDecimalDigits() const { DBG_ASSERT(!ImplGetFormatter()->IsTextFormat(m_nFormatKey), - "FormattedField::GetDecimalDigits : your'e sure what your'e doing when setting the precision of a text format ?"); + "FormattedField::GetDecimalDigits : Are you sure what you are doing when setting the precision of a text format?"); bool bThousand, IsRed; sal_uInt16 nPrecision, nAnzLeading; @@ -713,7 +713,7 @@ sal_uInt16 FormattedField::GetDecimalDigits() const void FormattedField::SetDecimalDigits(sal_uInt16 _nPrecision) { DBG_ASSERT(!ImplGetFormatter()->IsTextFormat(m_nFormatKey), - "FormattedField::SetDecimalDigits : your'e sure what your'e doing when setting the precision of a text format ?"); + "FormattedField::SetDecimalDigits : Are you sure what you are doing when setting the precision of a text format?"); // get the current settings bool bThousand, IsRed; |