TreeModel: Re-order template arguments for tree levels

More natural and easier to extend to use parameter packs later.

Adjust users.

Change-Id: Ic167196cc969d18bb1615084397e884f769d1e85
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2016-06-22 16:17:10 +02:00
parent 075a6f6805
commit 2536c2bfc7
7 changed files with 9 additions and 9 deletions

View File

@@ -157,7 +157,7 @@ inline uint qHash(const Debugger::Internal::Breakpoint &b) { return b.hash(); }
typedef QList<Breakpoint> Breakpoints;
class BreakHandler : public Utils::LeveledTreeModel<BreakpointItem, LocationItem>
class BreakHandler : public Utils::LeveledTreeModel<Utils::TreeItem, BreakpointItem, LocationItem>
{
Q_OBJECT