diff -r b1f0785c289d -r 4f501b74aeb1 messagingapp/msgui/unifiededitor/src/msgunieditoraddress.cpp --- a/messagingapp/msgui/unifiededitor/src/msgunieditoraddress.cpp Tue Jul 13 22:09:22 2010 +0530 +++ b/messagingapp/msgui/unifiededitor/src/msgunieditoraddress.cpp Sun Jul 25 18:59:19 2010 +0530 @@ -29,6 +29,7 @@ #include #include // Common phone number validity checker #include +#include // USER INCLUDES #include "debugtraces.h" @@ -79,6 +80,10 @@ this, SLOT(onContentsChanged(const QString&))); mAddressEdit->setInputMethodHints(Qt::ImhPreferNumbers); + + //To allow only latin char(s) in address fields. + HbEditorInterface editorInterface(mAddressEdit); + editorInterface.setInputConstraints(HbEditorConstraintLatinAlphabetOnly); } MsgUnifiedEditorAddress::~MsgUnifiedEditorAddress()