Fixed scrolling problems in list view.

This commit is contained in:
Robert Borzecki
2019-08-13 13:43:15 +02:00
parent 4dccaf3370
commit 0208d065c3
8 changed files with 127 additions and 130 deletions

View File

@@ -34,6 +34,10 @@ void NotesModel::requestRecordsCount() {
}
}
void NotesModel::requestRecords( const uint32_t offset, const uint32_t limit ) {
DBServiceAPI::NotesGetLimitOffset(application, offset, limit );
}
bool NotesModel::updateRecords( std::unique_ptr<std::vector<NotesRecord>> records, const uint32_t offset, const uint32_t limit, uint32_t count ) {
LOG_INFO("Offset: %d, Limit: %d Count:%d", offset, limit, count);