Problem in changing status of new message(SMS) to "Read"
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.
Code:
QMessage message = m_manager.message(m_messageId);
message.setStatus(QMessage::Read);
Any help will be appreciated.
Re: Problem in changing status of new message(SMS) to "Read"
Quote:
but it is changing the status only for my application.
...I want the status to be changed in the default messaging store.
For effecting anything outside your application, you will have to call native system API.