summaryrefslogtreecommitdiff
path: root/sw/inc/ToxLinkProcessor.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-20 15:42:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-20 16:39:56 +0000
commit92bfe7e3052a7540c81d9fa152f55920ad00b8ee (patch)
treed5cfb068e845cf86aeb6944db64d1e5bed4786e8 /sw/inc/ToxLinkProcessor.hxx
parentd3b94aae205597fdd369989d76a60420ae9b8ab1 (diff)
doesn't seem to be a reason start and end are swapped
Change-Id: If1ccdd303bc7c6e69360295c599270c41d03f3f7
Diffstat (limited to 'sw/inc/ToxLinkProcessor.hxx')
-rw-r--r--sw/inc/ToxLinkProcessor.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/ToxLinkProcessor.hxx b/sw/inc/ToxLinkProcessor.hxx
index 699c0ec9887e..30fa07e852d4 100644
--- a/sw/inc/ToxLinkProcessor.hxx
+++ b/sw/inc/ToxLinkProcessor.hxx
@@ -70,7 +70,7 @@ private:
*/
struct ClosedLink {
ClosedLink(const OUString& url, sal_Int32 startPosition, sal_Int32 endPosition) :
- mINetFormat(url, OUString()), mStartTextPos(endPosition), mEndTextPos(startPosition) {
+ mINetFormat(url, OUString()), mStartTextPos(startPosition), mEndTextPos(endPosition) {
}
SwFormatINetFormat mINetFormat;
sal_Int32 mStartTextPos;