diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-30 15:38:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-07-31 13:36:52 +0200 |
commit | 93257759580e6df10cc9eddbf1800a17d61cfc48 (patch) | |
tree | e8006965e5db2f73c9032d2769b767cfa5eb0c61 /include/vcl/mnemonic.hxx | |
parent | c9bb2e3d2c39638eabd24656a9642fa56464700e (diff) |
convert vcl/mnemonic.hxx from XubString to OUString
Change-Id: I2df7a6b29aa30ad5ad936b524061aeaef837ca9d
Diffstat (limited to 'include/vcl/mnemonic.hxx')
-rw-r--r-- | include/vcl/mnemonic.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/mnemonic.hxx b/include/vcl/mnemonic.hxx index 4ec22b5522a2..f6447254ed60 100644 --- a/include/vcl/mnemonic.hxx +++ b/include/vcl/mnemonic.hxx @@ -64,17 +64,17 @@ private: protected: SAL_DLLPRIVATE sal_uInt16 ImplGetMnemonicIndex( sal_Unicode c ); - SAL_DLLPRIVATE sal_Unicode ImplFindMnemonic( const XubString& rKey ); + SAL_DLLPRIVATE sal_Unicode ImplFindMnemonic( const OUString& rKey ); public: MnemonicGenerator(); - void RegisterMnemonic( const XubString& rKey ); - sal_Bool CreateMnemonic( XubString& rKey ); + void RegisterMnemonic( const OUString& rKey ); + OUString CreateMnemonic( const OUString& rKey ); ::com::sun::star::uno::Reference< ::com::sun::star::i18n::XCharacterClassification > GetCharClass(); // returns a string where all '~'-characters and CJK mnemonics of the form (~A) are completely removed - static String EraseAllMnemonicChars( const String& rStr ); + static OUString EraseAllMnemonicChars( const OUString& rStr ); }; #endif // _SV_MNEMONIC_HXX |