Remove dead code

This commit is contained in:
Jonas Kvinge
2021-06-28 00:19:17 +02:00
parent 20a15ecd35
commit aa859b9002
7 changed files with 10 additions and 169 deletions

View File

@@ -53,7 +53,7 @@ class SimpleTreeModel : public QAbstractItemModel {
void EmitDataChanged(T *item);
protected:
virtual void LazyPopulate(T *item) = 0;
virtual void LazyPopulate(T *item) { item->lazy_loaded = true; }
protected:
T *root_;