summaryrefslogtreecommitdiff
path: root/sw/source/core/tox/txmsrt.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-09-11 08:40:19 +0000
committerKurt Zenker <kz@openoffice.org>2003-09-11 08:40:19 +0000
commitae6ac79fcfda5a92477aaa57ba5112ce023486a5 (patch)
tree63fa7444485ac6b611949b8434d00e3a05ab3220 /sw/source/core/tox/txmsrt.cxx
parentd28c0bac11a75ef2385661ee1c31b52d468b85b9 (diff)
INTEGRATION: CWS OS18 (1.20.150); FILE MERGED
2003/08/28 11:23:50 os 1.20.150.1: #110848# regard phonetic reading for index primary and secondary keys, too
Diffstat (limited to 'sw/source/core/tox/txmsrt.cxx')
-rw-r--r--sw/source/core/tox/txmsrt.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sw/source/core/tox/txmsrt.cxx b/sw/source/core/tox/txmsrt.cxx
index 78ede78a6ecb..c5d783e8fbb1 100644
--- a/sw/source/core/tox/txmsrt.cxx
+++ b/sw/source/core/tox/txmsrt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txmsrt.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: vg $ $Date: 2003-05-26 08:14:00 $
+ * last change: $Author: kz $ $Date: 2003-09-11 09:40:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -563,11 +563,12 @@ USHORT SwTOXIndex::GetLevel() const
--------------------------------------------------------------------*/
-SwTOXCustom::SwTOXCustom(const String& rStr, USHORT nLevel,
+SwTOXCustom::SwTOXCustom(const String& rStr, const String& rReading,
+ USHORT nLevel,
const SwTOXInternational& rIntl,
const ::com::sun::star::lang::Locale& rLocale )
: SwTOXSortTabBase( TOX_SORT_CUSTOM, 0, 0, &rIntl, &rLocale ),
- aKey(rStr), nLev(nLevel)
+ aKey(rStr), sReading(rReading), nLev(nLevel)
{
}
@@ -613,6 +614,7 @@ USHORT SwTOXCustom::GetLevel() const
void SwTOXCustom::_GetText( String& rTxt, String &rTxtReading )
{
rTxt = aKey;
+ rTxtReading = sReading;
/// !!!!!!!!!!!!!!
}