summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedric.bosdonnat@free.fr>2013-07-18 17:48:31 +0200
committerCédric Bosdonnat <cedric.bosdonnat@free.fr>2013-07-18 17:48:31 +0200
commit49d077b80c15ec9d069435da08bbfe38cdd57c5a (patch)
treec0933173ed7c8aea6acf33db29f09e378381847c
parentc1fac43432891bf9f396ff1ec7a1c2ed042bce54 (diff)
n#825976: Fixed missing part of condition
Change-Id: Icc41828e3c2bd088fb5f7dd876f62c077ddf65ce
-rw-r--r--sw/source/core/tox/tox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/tox/tox.cxx b/sw/source/core/tox/tox.cxx
index eebf802e0045..a00719b2f6c7 100644
--- a/sw/source/core/tox/tox.cxx
+++ b/sw/source/core/tox/tox.cxx
@@ -338,7 +338,7 @@ SwForm::SwForm( TOXTypes eTyp ) // #i21237#
aTokens.push_back(SwFormToken(TOKEN_PAGE_NUMS));
}
- if (TOX_CONTENT == eType || TOX_ILLUSTRATIONS)
+ if (TOX_CONTENT == eType || TOX_ILLUSTRATIONS == eType)
aTokens.push_back(SwFormToken(TOKEN_LINK_END));
SetTemplate( 0, SW_RESSTR( nPoolId++ ));