diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:47:04 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:47:04 +0000 |
commit | 0736b3d0a0c0ebfa3537ebdcba326d4831945216 (patch) | |
tree | 2c549432ebe900097a5914bd5788a103ef2dfc79 /svx/source/unoedit | |
parent | cbad0f5f187521160910d7065ab22d8283acfb27 (diff) |
INTEGRATION: CWS sb13 (1.44.444); FILE MERGED
2004/02/06 08:49:20 sb 1.44.444.1: #i19699# Adapted to tightened tools/string.hxx.
Diffstat (limited to 'svx/source/unoedit')
-rw-r--r-- | svx/source/unoedit/unotext.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unoedit/unotext.cxx b/svx/source/unoedit/unotext.cxx index cec1d20dd529..8f48d88536e9 100644 --- a/svx/source/unoedit/unotext.cxx +++ b/svx/source/unoedit/unotext.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unotext.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: hr $ $Date: 2003-03-27 15:05:21 $ + * last change: $Author: kz $ $Date: 2004-02-26 13:47:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1741,7 +1741,7 @@ void SAL_CALL SvxUnoTextBase::insertControlCharacter( const uno::Reference< text { case text::ControlCharacter::PARAGRAPH_BREAK: { - const String aText( (char)13, 1 ); // '\r' geht auf'm Mac nicht + const String aText( (sal_Unicode)13 ); // '\r' geht auf'm Mac nicht insertString( xRange, aText, bAbsorb ); return; @@ -1792,7 +1792,7 @@ void SAL_CALL SvxUnoTextBase::insertControlCharacter( const uno::Reference< text aRange.nEndPos = aRange.nStartPos; pRange->SetSelection( aRange ); - const String aText( (char)13, 1 ); // '\r' geht auf'm Mac nicht + const String aText( (sal_Unicode)13 ); // '\r' geht auf'm Mac nicht pRange->setString( aText ); aRange.nStartPos = 0; |