summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-11-28 12:27:37 +0000
committerRüdiger Timm <rt@openoffice.org>2006-11-28 12:27:37 +0000
commit53a3ae521ecbce33197e2433e97ab3685087c170 (patch)
treed6c5264a880b1b8e9cdb1ce50a8c3de253d42448 /sfx2
parente84d5561a05b41041c034a0b66600568e19c85d3 (diff)
INTEGRATION: CWS pb19_SRC680 (1.120.68); FILE MERGED
2006/11/23 15:40:18 pb 1.120.68.1: fix: #i71882# nextWord search with endPos instead of startPos
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/newhelp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx
index 4efbe322a885..daf5ea89fd07 100644
--- a/sfx2/source/appl/newhelp.cxx
+++ b/sfx2/source/appl/newhelp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: newhelp.cxx,v $
*
- * $Revision: 1.120 $
+ * $Revision: 1.121 $
*
- * last change: $Author: obo $ $Date: 2006-10-13 09:46:23 $
+ * last change: $Author: rt $ $Date: 2006-11-28 13:27:37 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -339,7 +339,7 @@ namespace sfx2
while ( aBoundary.startPos != aBoundary.endPos )
{
- nStartPos = aBoundary.startPos;
+ nStartPos = aBoundary.endPos;
String sSearchToken( rSearchString.Copy(
(USHORT)aBoundary.startPos, (USHORT)aBoundary.endPos - (USHORT)aBoundary.startPos ) );
if ( sSearchToken.Len() > 0 && ( sSearchToken.Len() > 1 || sSearchToken.GetChar(0) != '.' ) )