[Libreoffice-commits] core.git: sw/inc sw/source xmloff/source

Adolfo Jayme Barrientos fitojb at ubuntu.com
Sun Feb 18 08:18:13 UTC 2018


 sw/inc/grfatr.hxx                          |    2 +-
 sw/source/core/graphic/grfatr.cxx          |    4 ++--
 xmloff/source/text/XMLTextFrameContext.cxx |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit dad787ca46457c77c1ac67d62a9a370ea3fbd8ee
Author: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
Date:   Sun Feb 18 02:17:37 2018 -0600

    Fix bug numbers in these comments
    
    Follow-up to 0e687595295e210e6275eda57a253ca66e8249ce.
    Props to Regina and Heiko.
    
    Change-Id: I4a5b71230639edf8c22d9e21c29fa31b4a561e75

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)


More information about the Libreoffice-commits mailing list