X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsqlitestorage.h;h=d52cdfa24a73c86b5a7d802a7a9e405cf8f9e0f5;hb=f12d6496251729f7d21f4fbcb0814dec7fba4b75;hp=9a37160a7bee2e273cc2999fe277d4499b33419a;hpb=79aa3994d78860c0b7a623a46ce44dffff988fd9;p=quassel.git diff --git a/src/core/sqlitestorage.h b/src/core/sqlitestorage.h index 9a37160a..d52cdfa2 100644 --- a/src/core/sqlitestorage.h +++ b/src/core/sqlitestorage.h @@ -121,7 +121,6 @@ public slots: /* Sysident handling */ QMap getAllAuthUserNames() override; - QString getAuthUserName(UserId user) override; protected: void setConnectionProperties(const QVariantMap &properties, @@ -175,7 +174,7 @@ public: bool prepareQuery(MigrationObject mo) override; - int stepSize() { return 50000; } + qint64 stepSize() { return 50000; } protected: bool transaction() override { return logDb().transaction(); } @@ -184,7 +183,7 @@ protected: private: void setMaxId(MigrationObject mo); - int _maxId; + qint64 _maxId; };