summaryrefslogtreecommitdiff
path: root/xmloff
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 /xmloff
parentcea0ceff755d57ad3feaffda9cff82f742ea7b82 (diff)
Fix bug numbers in these comments
Follow-up to 0e687595295e210e6275eda57a253ca66e8249ce. Props to Regina and Heiko. Change-Id: I4a5b71230639edf8c22d9e21c29fa31b4a561e75
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/XMLTextFrameContext.cxx2
1 files changed, 1 insertions, 1 deletions
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)