Skip to content

Commit

Permalink
Hooked up messageSendStateChanged method
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Feb 20, 2014
1 parent 9a6a204 commit e230ccb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mms-handler-dbus/test/mms_handler_dbus_server/mmshandler.cpp
Expand Up @@ -67,6 +67,11 @@ void MmsHandler::messageReceiveStateChanged(QString recId, int state)
qDebug() << "messageReceiveStateChanged" << recId << state;
}

void MmsHandler::messageSendStateChanged(QString recId, int state)
{
qDebug() << "messageSendStateChanged" << recId << state;
}

void MmsHandler::messageReceived(QString recId, QString mmsId, QString from,
QStringList to, QStringList cc, QString subj, uint date, int priority,
QString cls, bool readReport, MmsPartList parts)
Expand Down
1 change: 1 addition & 0 deletions mms-handler-dbus/test/mms_handler_dbus_server/mmshandler.h
Expand Up @@ -33,6 +33,7 @@ public Q_SLOTS:
void messageReceived(QString recId, QString mmsId, QString from,
QStringList to, QStringList cc, QString subj, uint date, int priority,
QString cls, bool readReport, MmsPartList parts);
void messageSendStateChanged(QString recId, int state);

private:
bool m_isRegistered;
Expand Down

0 comments on commit e230ccb

Please sign in to comment.