diff -r 8ba0afbb4637 -r a15d9966050f messagingapp/msgutils/unieditorutils/editorgenutils/inc/UniEditorGenUtils.h --- a/messagingapp/msgutils/unieditorutils/editorgenutils/inc/UniEditorGenUtils.h Thu Sep 02 20:23:03 2010 +0300 +++ b/messagingapp/msgutils/unieditorutils/editorgenutils/inc/UniEditorGenUtils.h Fri Sep 17 08:28:39 2010 +0300 @@ -187,6 +187,14 @@ */ TBool IsValidEmailAddress( const TDesC& aAddress ); + /** + * Verifies if the given two numbers are same + * @param aFirstNumber, phone number to be matched + * @param aSecondNumber, phone number to be matched + * @return TBool, true if the numbers match + */ + TBool MatchPhoneNumberL(TDesC& aFirstNumber, TDesC& aSecondNumber); + private: /** * get sms character limits from feature manager @@ -236,6 +244,11 @@ * MMS size limit */ int mMaxMmsSize; + + /** + * The amount of digits to be used in contact matching + */ + int mMatchDigitCount; };