The desktop notification of "New Message/SMS" is removed in nokia symbian phones when the message is marked as "Read". What i am trying to achieve is mark the sms as read and want to reflect the same in default messaging application too.

I tried with setStatus(QMessage::Read) but it is changing the status only for my application. ( why i said so: because message.status() returns "Read" ). I want the status to be changed in the default messaging store.

Qt Code:
  1. QMessage message = m_manager.message(m_messageId);
  2.  
  3. message.setStatus(QMessage::Read);
To copy to clipboard, switch view to plain text mode 

Any help will be appreciated.