diff -r 84d9eb65b26f -r e4592d119491 messagingapp/msgui/unifiededitor/src/msgattachmentcontainer.cpp --- a/messagingapp/msgui/unifiededitor/src/msgattachmentcontainer.cpp Mon May 03 12:29:07 2010 +0300 +++ b/messagingapp/msgui/unifiededitor/src/msgattachmentcontainer.cpp Fri May 14 15:49:35 2010 +0300 @@ -34,9 +34,8 @@ // MsgAttachmentContainer::MsgAttachmentContainer // @see header file //--------------------------------------------------------------- -MsgAttachmentContainer::MsgAttachmentContainer( const QString& pluginPath, QGraphicsItem *parent ) : +MsgAttachmentContainer::MsgAttachmentContainer( QGraphicsItem *parent ) : HbWidget(parent), -mPluginPath(pluginPath), mIsMMContent(false) { mLayout = new QGraphicsLinearLayout(Qt::Vertical, this); @@ -72,7 +71,7 @@ if( (fileSize + msgSize) <= MsgMonitor::maxMmsSize()) { MsgUnifiedEditorAttachment* att = new MsgUnifiedEditorAttachment( - mPluginPath, filepath, fileSize, this); + filepath, fileSize, this); if( ((mAttachmentList.count() == 0) && att->isMultimediaContent()) || ((mAttachmentList.count() == 1) && !mIsMMContent) ) {