X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsqlitestorage.h;h=0ab792132f3e9f13153ec68f84cdac0318f40af4;hb=6a63070246d89aa2a2474e3a9a1035fa889ad77e;hp=9a37160a7bee2e273cc2999fe277d4499b33419a;hpb=79aa3994d78860c0b7a623a46ce44dffff988fd9;p=quassel.git diff --git a/src/core/sqlitestorage.h b/src/core/sqlitestorage.h index 9a37160a..0ab79213 100644 --- a/src/core/sqlitestorage.h +++ b/src/core/sqlitestorage.h @@ -175,7 +175,7 @@ public: bool prepareQuery(MigrationObject mo) override; - int stepSize() { return 50000; } + qint64 stepSize() { return 50000; } protected: bool transaction() override { return logDb().transaction(); } @@ -184,7 +184,7 @@ protected: private: void setMaxId(MigrationObject mo); - int _maxId; + qint64 _maxId; };