Fix build.

This commit is contained in:
Martin Rotter 2018-01-03 07:35:41 +01:00
parent f08cf038e0
commit 80fe31eb62

View File

@ -30,7 +30,7 @@
#include <QUrl>
#include <QVariant>
#define EMPT_STR_NULL(x) ( x ## .isNull() ? "" : x)
#define EMPT_STR_NULL(x) x##.isNull() ? "" : x
bool DatabaseQueries::markMessagesReadUnread(QSqlDatabase db, const QStringList& ids, RootItem::ReadStatus read) {
QSqlQuery q(db);