summaryrefslogtreecommitdiff
path: root/sw/source/core
diff options
context:
space:
mode:
authorAndreas Martens <ama@openoffice.org>2000-10-26 07:23:11 +0000
committerAndreas Martens <ama@openoffice.org>2000-10-26 07:23:11 +0000
commitdb7794c521e742df2fa6673b2e9c73b13811ab6e (patch)
tree5eeda21311b7cc6a81919cdfd6d4211675e3cf72 /sw/source/core
parentc87666f64c80852bed120b2048486c2fbb4d4eed (diff)
Fix: Old debug-code deleted
Diffstat (limited to 'sw/source/core')
-rw-r--r--sw/source/core/text/guess.cxx37
1 files changed, 5 insertions, 32 deletions
diff --git a/sw/source/core/text/guess.cxx b/sw/source/core/text/guess.cxx
index 950622824141..6084d94ed6fb 100644
--- a/sw/source/core/text/guess.cxx
+++ b/sw/source/core/text/guess.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: guess.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jp $ $Date: 2000-10-25 12:02:48 $
+ * last change: $Author: ama $ $Date: 2000-10-26 08:23:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -435,37 +435,12 @@ sal_Bool SwTxtGuess::Guess( const SwTxtFormatInfo &rInf, const KSHORT nPorHeight
if( nLeftPos )
{
-#ifdef DEBUG
- static BOOL bTest = FALSE;
- if( bTest && bHyph && nHyphPos )
- {
-//JP 25.10.00: "WordSelection" class is removed - use the breakiterator
-// WordSelection::ResetWordDelimiter();
-// xub_StrLen nWrdStart = WordSelection::GoStartWord( rInf.GetTxt(), nHyphPos );
-// xub_StrLen nLen = WordSelection::GoEndWord( rInf.GetTxt(), nWrdStart ) - nWrdStart;
- if( nLen )
-
- {
- XubString aSelTxt( rInf.GetTxt().Copy(nWrdStart, nLen) );
- MSHORT nMinTrail = 0;
- if( nWrdStart + nLen > nHyphPos )
- nMinTrail = nWrdStart + nLen - nHyphPos - 1;
- xHyphWord = ((SwTxtFormatInfo&)rInf).HyphWord( aSelTxt, nMinTrail );
- if( xHyphWord.is() )
- nHyphPos = xHyphWord->getHyphenationPos() + nWrdStart;
- }
- }
- else
-#endif
- {
- xub_StrLen nX = nLeftPos;
- while( nX && IsDelim( rInf.GetChar( --nX ) ) )
- nLeftPos = nX;
- }
+ xub_StrLen nX = nLeftPos;
+ while( nX && IsDelim( rInf.GetChar( --nX ) ) )
+ nLeftPos = nX;
}
}
}
- // nLeftPos = GetPrevEnd( rInf, nRightPos ); OLD_ITERATOR
if ( nLeftPos < rInf.GetIdx() )
nLeftPos = rInf.GetIdx();
@@ -475,8 +450,6 @@ sal_Bool SwTxtGuess::Guess( const SwTxtFormatInfo &rInf, const KSHORT nPorHeight
nLeftWidth =
rInf.GetTxtSize( rInf.GetIdx(), nLeftPos - rInf.GetIdx() ).Width();
- // OLD_ITERATOR
- // rInf.GetTxtSize( rInf.GetIdx(), nLeftPos - rInf.GetIdx() + 1 ).Width();
bHyph = bHyph && ( nHyphPos > nLeftPos );