Some more work on ON.

This commit is contained in:
Martin Rotter 2016-02-25 20:56:38 +01:00
parent f2943a594d
commit fb1233d379
2 changed files with 2 additions and 7 deletions

View File

@ -221,11 +221,7 @@ QNetworkReply::NetworkError OwnCloudNetworkFactory::markMessagesRead(RootItem::R
return (m_lastError = network_reply.first);
}
QNetworkReply::NetworkError OwnCloudNetworkFactory::markMessagesStarred(const QList<int> &custom_ids) {
return QNetworkReply::NoError;
}
QNetworkReply::NetworkError OwnCloudNetworkFactory::markMessagesUnstarred(const QList<int> &custom_ids) {
QNetworkReply::NetworkError OwnCloudNetworkFactory::markMessagesStarred(RootItem::Importance importance, const QStringList &custom_ids) {
return QNetworkReply::NoError;
}

View File

@ -123,8 +123,7 @@ class OwnCloudNetworkFactory {
OwnCloudGetMessagesResponse getMessages(int feed_id);
QNetworkReply::NetworkError markMessagesRead(RootItem::ReadStatus status, const QStringList &custom_ids);
QNetworkReply::NetworkError markMessagesStarred(const QList<int> &custom_ids);
QNetworkReply::NetworkError markMessagesUnstarred(const QList<int> &custom_ids);
QNetworkReply::NetworkError markMessagesStarred(RootItem::Importance importance, const QStringList &custom_ids);
private:
QString m_url;