diff -r 85902f042028 -r a5e7a4f63858 uiutils/Findutil/inc/FindUtilKorean.h --- a/uiutils/Findutil/inc/FindUtilKorean.h Wed Sep 15 12:29:17 2010 +0300 +++ b/uiutils/Findutil/inc/FindUtilKorean.h Wed Oct 13 14:50:15 2010 +0300 @@ -24,11 +24,6 @@ #include "FindUtilBase.h" -#ifdef _DEBUG -#include -class CCnvCharacterSetConverter; -#endif - /** * CFindUtilKorean utils class * @@ -62,13 +57,6 @@ private: - enum TMatchFlag - { - EMatchFlagNone = 0x0000, - EMatchFlagAsterikInLast = 0x0001, - EMatchFlagAsterikInStart = 0x0002 - }; - CFindUtilKorean(); void ConstructL(); @@ -81,10 +69,9 @@ * @param aSearchText for text to be used in searching * @return ETrue if match found, EFalse otherwise */ - TInt IsFindMatch( + TBool IsFindMatchL( const TDesC& aItemString, - const TDesC& aSearchText, - const TMatchFlag aFlag = EMatchFlagNone); + const TDesC& aSearchText ); /** * Decomposes given string to plain jamos. @@ -97,8 +84,6 @@ const TDesC& aString, HBufC* aDecomposedString ); - void DecomposeChar( TChar aChar, TDes& aDecomposedString ); - /** * Decomposes hangul syllables to single jamos. * @@ -181,27 +166,6 @@ const TDesC& aSearchText, HBufC*& aNextChars); - private: - - void TakeIntoNextCharsL(HBufC*& aNextChars, TChar aChar); - - void InsertNextCharsL( - HBufC*& aNextChars, - TBool& aReAlloced, - const TChar& aChar, - const TInt aIndex = KErrNotFound); - - inline TBool MatchConsonentBased(const TChar& aA, const TChar& aB); - - private: - - TUid iCurrentProcessUid3; - -#ifdef _DEBUG - RFs iFs; - CCnvCharacterSetConverter* iConv; -#endif - }; #endif // __FINDUTILKOREAN__