MCPcopy Create free account
hub / github.com/KDE/kdevelop / allScopes

Method allScopes

plugins/quickopen/quickopenmodel.cpp:44–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44QStringList QuickOpenModel::allScopes() const
45{
46 QStringList scopes;
47 for (const ProviderEntry& provider : m_providers) {
48 for (const QString& scope : provider.scopes) {
49 if (!scopes.contains(scope)) {
50 scopes << scope;
51 }
52 }
53 }
54
55 return scopes;
56}
57
58QStringList QuickOpenModel::allTypes() const
59{

Callers 1

QuickOpenWidgetMethod · 0.80

Calls 1

containsMethod · 0.45

Tested by

no test coverage detected