forked from blue/squawk
fix: empty statements
This commit is contained in:
parent
849159d5a5
commit
8d88aa5d09
8 changed files with 10 additions and 10 deletions
|
@ -318,7 +318,7 @@ void Core::Archive::changeMessage(const QString& id, const QMap<QString, QVarian
|
|||
if (rc != 0) {
|
||||
throw Unknown(jid.toStdString(), mdb_strerror(rc));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
lmdbData.mv_size = ba.size();
|
||||
lmdbData.mv_data = (uint8_t*)ba.data();
|
||||
|
|
|
@ -53,7 +53,7 @@ void Core::MessageHandler::onMessageReceived(const QXmppMessage& msg)
|
|||
if (cnt != 0) {
|
||||
cnt->changeMessage(id, cData);
|
||||
}
|
||||
;
|
||||
|
||||
emit acc->changeMessage(jid, id, cData);
|
||||
pendingStateMessages.erase(itr);
|
||||
handled = true;
|
||||
|
|
|
@ -202,7 +202,7 @@ void Core::UrlStorage::addFile(const std::list<Shared::MessageInfo>& msgs, const
|
|||
}
|
||||
|
||||
UrlInfo info (path, msgs);
|
||||
writeInfo(url, info, true);;
|
||||
writeInfo(url, info, true);
|
||||
}
|
||||
|
||||
QString Core::UrlStorage::addMessageAndCheckForPath(const QString& url, const QString& account, const QString& jid, const QString& id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue