Formatting

This commit is contained in:
Jonas Kvinge
2022-03-22 21:19:59 +01:00
parent f6b70fda71
commit a6c05df362
14 changed files with 30 additions and 1 deletions

View File

@@ -58,7 +58,7 @@ class SimpleTreeItem {
bool lazy_loaded;
T *parent;
QList<T *> children;
QList<T*> children;
QAbstractItemModel *child_model;
SimpleTreeModel<T> *model;

View File

@@ -88,6 +88,7 @@ QModelIndex SimpleTreeModel<T>::index(int row, int, const QModelIndex &parent) c
return QModelIndex();
return ItemToIndex(parent_item->children[row]);
}
template<typename T>

View File

@@ -94,6 +94,7 @@ ITaskbarList3 *Windows7ThumbBar::CreateTaskbarList() {
}
return taskbar_list;
}
void Windows7ThumbBar::SetupButton(const QAction *action, THUMBBUTTON *button) {