aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/classview/classviewmanager.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-11-15 18:42:11 +0100
committerhjk <hjk@qt.io>2019-11-18 08:33:26 +0000
commit3c6c61d1c82d9de71c2c191e8ee8d28e3ac021ab (patch)
tree749da47c5183c5e818e79e1cd3d13af8ad8a69c4 /src/plugins/classview/classviewmanager.cpp
parent3ecf3d95753bbfa6affe32ef84cf0727bdbca9be (diff)
ClassView: Dissolve the internal 'Utils' class
It's regularly getting in my way, and it's rather a namespace anyway. Also, move the functions that are only used once closer to their place of use. Change-Id: I97951aae1b69c04f391afbdd1b491a8a9173a977 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/classview/classviewmanager.cpp')
-rw-r--r--src/plugins/classview/classviewmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/classview/classviewmanager.cpp b/src/plugins/classview/classviewmanager.cpp
index 06ab90783e..1910cf419c 100644
--- a/src/plugins/classview/classviewmanager.cpp
+++ b/src/plugins/classview/classviewmanager.cpp
@@ -437,7 +437,7 @@ void Manager::gotoLocation(const QString &fileName, int line, int column)
void Manager::gotoLocations(const QList<QVariant> &list)
{
- QSet<SymbolLocation> locations = Utils::roleToLocations(list);
+ QSet<SymbolLocation> locations = Internal::roleToLocations(list);
if (locations.size() == 0)
return;