Added part of text widget implementation.

This commit is contained in:
Robert Borzecki
2019-08-12 12:40:25 +02:00
parent c30213e7ac
commit e60fdd95be
3 changed files with 140 additions and 12 deletions

View File

@@ -38,7 +38,7 @@ bool NotesModel::updateRecords( std::unique_ptr<std::vector<NotesRecord>> record
LOG_INFO("Offset: %d, Limit: %d Count:%d", offset, limit, count);
for( uint32_t i=0; i<records.get()->size(); ++i ) {
LOG_INFO("id: %d, filename: %s", records.get()->operator [](i).ID, records.get()->operator [](i).path.c_str());
LOG_INFO("id: %d, filename: %nos", records.get()->operator [](i).ID, records.get()->operator [](i).path.c_str());
}