This patch (against 071000 sources) gets rid of a couple instances of
compiler lint that I inadvertently left in a few patches back. Code
is XP, tested on Linux.
--
[EMAIL PROTECTED] (WJCarpenter) PGP 0x91865119
38 95 1B 69 C9 C6 3D 25 73 46 32 04 69 D6 ED F3
diff -ru abi-071000/src/text/fmt/xp/fl_BlockLayout.cpp
abi-071000-ORIG/src/text/fmt/xp/fl_BlockLayout.cpp
--- abi-071000/src/text/fmt/xp/fl_BlockLayout.cpp Mon Jul 10 13:41:42 2000
+++ abi-071000-ORIG/src/text/fmt/xp/fl_BlockLayout.cpp Sun Jul 9 11:11:52 2000
@@ -1975,7 +1975,7 @@
UT_UCSChar theWord[101];
// convert smart quote apostrophe to ASCII single
quote to be compatible with ispell
- for (unsigned int ldex=0; ldex<wordLength; ++ldex)
+ for (int ldex=0; ldex<wordLength; ++ldex)
{
UT_UCSChar currentChar;
currentChar = pBlockText[wordBeginning + ldex];
@@ -2066,7 +2066,7 @@
UT_UCSChar theWord[101];
// convert smart quote apostrophe to ASCII single quote to be
compatible with ispell
- for (unsigned int ldex=0; ldex<wordLength; ++ldex)
+ for (int ldex=0; ldex<wordLength; ++ldex)
{
UT_UCSChar currentChar;
currentChar = pBlockText[wordBeginning + ldex];
@@ -3909,7 +3909,7 @@
if (wordLength < 100)
{
// convert smart quote apostrophe to ASCII single quote to be
compatible with ispell
- for (unsigned int ldex=0; ldex<wordLength; ++ldex)
+ for (int ldex=0; ldex<wordLength; ++ldex)
{
UT_UCSChar currentChar;
currentChar = pBlockText[wordBeginning + ldex];