summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2001-05-16 11:18:58 +0000
committerjp <jp@openoffice.org>2001-05-16 11:18:58 +0000
commit1bc4c406b3864c08a5763bec7cec64c0a938e149 (patch)
treeb8405e8c763f9bf1649a11f85f2e40917dce6db5 /sw/source
parent1b6ff1b3cde11bd54f58583683b67bbe833d27ca (diff)
LOWER_CASE_CHAR -> LOWERCASE_LETTER
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/txtnode/fntcap.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/txtnode/fntcap.cxx b/sw/source/core/txtnode/fntcap.cxx
index 49403768b23e..7ad2ab1b26c5 100644
--- a/sw/source/core/txtnode/fntcap.cxx
+++ b/sw/source/core/txtnode/fntcap.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fntcap.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fme $ $Date: 2001-04-09 10:44:17 $
+ * last change: $Author: jp $ $Date: 2001-05-16 12:18:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -556,7 +556,7 @@ void SwSubFont::DoOnCapitals( SwDoCapitals &rDo )
if( nPos < nMaxPos )
{
nPos = (xub_StrLen)pBreakIt->xBreak->endOfCharBlock( rOldText, nPos,
- pBreakIt->GetLocale( eLng ), CharType::LOWER_CASE_CHAR );
+ pBreakIt->GetLocale( eLng ), CharType::LOWERCASE_LETTER);
if( nPos == STRING_LEN )
nPos = nOldPos;
else if( nPos > nMaxPos )
@@ -585,7 +585,7 @@ void SwSubFont::DoOnCapitals( SwDoCapitals &rDo )
nOldPos = nPos;
}
nPos = (xub_StrLen)pBreakIt->xBreak->nextCharBlock( rOldText, nPos,
- pBreakIt->GetLocale( eLng ), CharType::LOWER_CASE_CHAR );
+ pBreakIt->GetLocale( eLng ), CharType::LOWERCASE_LETTER);
if( nPos == STRING_LEN || nPos > nMaxPos )
nPos = nMaxPos;
ASSERT( nPos, "nextCharBlock not implemented?" );
@@ -656,7 +656,7 @@ void SwSubFont::DoOnCapitals( SwDoCapitals &rDo )
} while( nOldPos != nPos );
}
nPos = (xub_StrLen)pBreakIt->xBreak->endOfCharBlock( rOldText, nPos,
- pBreakIt->GetLocale( eLng ), CharType::LOWER_CASE_CHAR );
+ pBreakIt->GetLocale( eLng ), CharType::LOWERCASE_LETTER);
if( nPos == STRING_LEN || nPos > nMaxPos )
nPos = nMaxPos;
ASSERT( nPos, "endOfCharBlock not implemented?" );