messagingapp/msgui/conversationview/src/msgeditorwidget.cpp
changeset 67 fc91263aee62
parent 56 f42d9a78f435
child 73 ecf6a73a9186
--- a/messagingapp/msgui/conversationview/src/msgeditorwidget.cpp	Tue Sep 14 22:54:56 2010 +0530
+++ b/messagingapp/msgui/conversationview/src/msgeditorwidget.cpp	Fri Sep 17 20:01:45 2010 +0530
@@ -65,8 +65,8 @@
 // @see header
 //---------------------------------------------------------------
 MsgEditorWidget::MsgEditorWidget(QGraphicsItem *parent) :
-    HbWidget(parent), mMsgEditor(NULL),
-    mSendButton(NULL),mPluginLoader(NULL)
+    HbWidget(parent), mMsgEditor(0), mSendButton(0), mPluginInterface(0), mPluginLoader(0),
+        mSmsCharLimitReached(false)
 {
     //setting background.
     HbFrameItem* backGround = new HbFrameItem(this);
@@ -200,9 +200,9 @@
     
     //Check done for optimization
     //Only if content is deleted we need to call encodingsettings again
-    if(mPrevBuffer.isEmpty() || str.size() <= mPrevBuffer.size())
+    if (mPrevBuffer.isEmpty() || str.size() <= mPrevBuffer.size())
     {
-    mPluginInterface->setEncodingSettings(EFalse,ESmsEncodingNone,mCharSupportType);
+        mPluginInterface->setEncodingSettings(EFalse,ESmsEncodingNone,mCharSupportType);
     }
     
     TInt numOfRemainingChars;