summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdolfo Jayme Barrientos <fitojb@ubuntu.com>2018-02-18 02:17:37 -0600
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2018-02-18 02:17:37 -0600
commitdad787ca46457c77c1ac67d62a9a370ea3fbd8ee (patch)
treef8ad2ad1c7bce1171a2b4135413e73b4566a6cec
parentcea0ceff755d57ad3feaffda9cff82f742ea7b82 (diff)
Fix bug numbers in these comments
Follow-up to 0e687595295e210e6275eda57a253ca66e8249ce. Props to Regina and Heiko. Change-Id: I4a5b71230639edf8c22d9e21c29fa31b4a561e75
-rw-r--r--sw/inc/grfatr.hxx2
-rw-r--r--sw/source/core/graphic/grfatr.cxx4
-rw-r--r--xmloff/source/text/XMLTextFrameContext.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/grfatr.hxx b/sw/inc/grfatr.hxx
index f9e46068642a..e6ddaacfd7fa 100644
--- a/sw/inc/grfatr.hxx
+++ b/sw/inc/grfatr.hxx
@@ -90,7 +90,7 @@ class SwRotationGrf : public SfxUInt16Item
private:
Size aUnrotatedSize;
- // tdf#15529 check and evtl. correct value, it is in 10th
+ // tdf#115529 check and evtl. correct value, it is in 10th
// degrees and *has* to be in the range [0 .. 3600[
sal_Int16 checkAndCorrectValue(sal_Int16 nValue);
diff --git a/sw/source/core/graphic/grfatr.cxx b/sw/source/core/graphic/grfatr.cxx
index 7300f574a26f..2ff88c18797f 100644
--- a/sw/source/core/graphic/grfatr.cxx
+++ b/sw/source/core/graphic/grfatr.cxx
@@ -166,7 +166,7 @@ sal_Int16 SwRotationGrf::checkAndCorrectValue(sal_Int16 nValue)
}
SwRotationGrf::SwRotationGrf( sal_Int16 nVal, const Size& rSz )
- // tdf#15529 check and evtl. correct value
+ // tdf#115529 check and evtl. correct value
: SfxUInt16Item( RES_GRFATR_ROTATION, checkAndCorrectValue(nVal) ),
aUnrotatedSize( rSz )
{
@@ -199,7 +199,7 @@ bool SwRotationGrf::PutValue( const uno::Any& rVal, sal_uInt8 )
if (rVal >>= nValue)
{
// sal_uInt16 argument needed
- // tdf#15529 check and evtl. correct value
+ // tdf#115529 check and evtl. correct value
SetValue(static_cast<sal_uInt16>(checkAndCorrectValue(nValue)));
return true;
}
diff --git a/xmloff/source/text/XMLTextFrameContext.cxx b/xmloff/source/text/XMLTextFrameContext.cxx
index 25b6b0441cf5..4f3a484b3bf6 100644
--- a/xmloff/source/text/XMLTextFrameContext.cxx
+++ b/xmloff/source/text/XMLTextFrameContext.cxx
@@ -1028,7 +1028,7 @@ XMLTextFrameContext_Impl::XMLTextFrameContext_Impl(
const double fRotate(aDecomposedTransform.getRotate() * (1800.0/M_PI));
nRotation = static_cast< sal_Int16 >(basegfx::fround(fRotate) % 3600);
- // tdf#115519 may be negative, with the above modulo maximal -3599, so
+ // tdf#115529 may be negative, with the above modulo maximal -3599, so
// no loop needed here. nRotation is used in setPropertyValue("GraphicRotation")
// and *has* to be in the range [0 .. 3600[
if(nRotation < 0)