summaryrefslogtreecommitdiffstats
path: root/i18npool/inc/indexentrysupplier_default.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/inc/indexentrysupplier_default.hxx')
-rw-r--r--i18npool/inc/indexentrysupplier_default.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/i18npool/inc/indexentrysupplier_default.hxx b/i18npool/inc/indexentrysupplier_default.hxx
index 757a849af46a..37fffddc3831 100644
--- a/i18npool/inc/indexentrysupplier_default.hxx
+++ b/i18npool/inc/indexentrysupplier_default.hxx
@@ -35,21 +35,21 @@ public:
virtual sal_Bool SAL_CALL loadAlgorithm(
const com::sun::star::lang::Locale& rLocale,
- const rtl::OUString& SortAlgorithm, sal_Int32 collatorOptions )
+ const OUString& SortAlgorithm, sal_Int32 collatorOptions )
throw (com::sun::star::uno::RuntimeException);
- virtual rtl::OUString SAL_CALL getIndexKey( const rtl::OUString& IndexEntry,
- const rtl::OUString& PhoneticEntry, const com::sun::star::lang::Locale& rLocale )
+ virtual OUString SAL_CALL getIndexKey( const OUString& IndexEntry,
+ const OUString& PhoneticEntry, const com::sun::star::lang::Locale& rLocale )
throw (com::sun::star::uno::RuntimeException);
- virtual sal_Int16 SAL_CALL compareIndexEntry( const rtl::OUString& IndexEntry1,
- const rtl::OUString& PhoneticEntry1, const com::sun::star::lang::Locale& rLocale1,
- const rtl::OUString& IndexEntry2, const ::rtl::OUString& PhoneticEntry2,
+ virtual sal_Int16 SAL_CALL compareIndexEntry( const OUString& IndexEntry1,
+ const OUString& PhoneticEntry1, const com::sun::star::lang::Locale& rLocale1,
+ const OUString& IndexEntry2, const OUString& PhoneticEntry2,
const com::sun::star::lang::Locale& rLocale2 )
throw (com::sun::star::uno::RuntimeException);
- virtual rtl::OUString SAL_CALL getIndexCharacter( const rtl::OUString& rIndexEntry,
- const com::sun::star::lang::Locale& rLocale, const rtl::OUString& rSortAlgorithm )
+ virtual OUString SAL_CALL getIndexCharacter( const OUString& rIndexEntry,
+ const com::sun::star::lang::Locale& rLocale, const OUString& rSortAlgorithm )
throw (com::sun::star::uno::RuntimeException);
private:
@@ -58,8 +58,8 @@ private:
struct IndexKey {
sal_Unicode key;
- rtl::OUString mkey;
- rtl::OUString desc;
+ OUString mkey;
+ OUString desc;
};
class IndexTable
@@ -84,11 +84,11 @@ public:
Index(const com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext >& rxContext);
~Index();
- void init(const com::sun::star::lang::Locale& rLocale, const rtl::OUString& algorithm) throw (com::sun::star::uno::RuntimeException);
+ void init(const com::sun::star::lang::Locale& rLocale, const OUString& algorithm) throw (com::sun::star::uno::RuntimeException);
- void makeIndexKeys(const com::sun::star::lang::Locale &rLocale, const rtl::OUString &algorithm) throw (com::sun::star::uno::RuntimeException);
- sal_Int16 getIndexWeight(const rtl::OUString& rIndexEntry);
- rtl::OUString getIndexDescription(const rtl::OUString& rIndexEntry);
+ void makeIndexKeys(const com::sun::star::lang::Locale &rLocale, const OUString &algorithm) throw (com::sun::star::uno::RuntimeException);
+ sal_Int16 getIndexWeight(const OUString& rIndexEntry);
+ OUString getIndexDescription(const OUString& rIndexEntry);
IndexTable tables[MAX_TABLES];
sal_Int16 table_count;
@@ -96,7 +96,7 @@ public:
sal_Int16 key_count;
sal_Int16 mkeys[MAX_KEYS];
sal_Int16 mkey_count;
- rtl::OUString skipping_chars;
+ OUString skipping_chars;
CollatorImpl *collator;
sal_Int16 compare(sal_Unicode c1, sal_Unicode c2);
};