diff options
author | Christian Stenger <[email protected]> | 2017-09-05 11:17:55 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2017-09-05 13:49:23 +0000 |
commit | cd51ff7c0f4941e56863688b99f64ce6074c74e8 (patch) | |
tree | 5add3646bbda44288fe451214027ef43f62292c8 /src/plugins/debugger/watchhandler.cpp | |
parent | 706fb1a2b68733a11ca5238b3aa3e70d60fc6ffc (diff) |
Utils: Fix typo in function name
Change-Id: Ibd973f68d291731dab06ef1b7eee902be19601a5
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 5947ac4cca2..84d66f2a899 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -517,7 +517,7 @@ void WatchModel::reinitialize(bool includeInspectData) WatchItem *WatchModel::findItem(const QString &iname) const { - return findNonRooItem([iname](WatchItem *item) { return item->iname == iname; }); + return findNonRootItem([iname](WatchItem *item) { return item->iname == iname; }); } static QString parentName(const QString &iname) |