diff -r 238255e8b033 -r 84d9eb65b26f messagingapp/msgappfw/msghistory/src/msgitem.cpp --- a/messagingapp/msgappfw/msghistory/src/msgitem.cpp Fri Apr 16 14:56:15 2010 +0300 +++ b/messagingapp/msgappfw/msghistory/src/msgitem.cpp Mon May 03 12:29:07 2010 +0300 @@ -99,17 +99,17 @@ // MsgItem::isAttributeSet //@ see header // --------------------------------------------------------------------------- -MsgItem::MsgAttribute MsgItem::isAttributeSet +bool MsgItem::isAttributeSet (MsgItem::MsgAttribute attribute) const { - return (MsgItem::MsgAttribute)(mAttributes & attribute ); + return (mAttributes & attribute ); } // --------------------------------------------------------------------------- // MsgItem::setId //@ see header // --------------------------------------------------------------------------- -void MsgItem::setId(const int id) +void MsgItem::setId(int id) { mId = id; }