From ab7fdac2f83ceb784910239c82c39edd40abe38b Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Fri, 10 Feb 2017 00:54:04 +0100 Subject: [PATCH] logic: Fixed non-indexed symbols were not shown as namespace contents --- src/lib/data/PersistentStorage.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/data/PersistentStorage.cpp b/src/lib/data/PersistentStorage.cpp index a0f318ef..5619fc85 100644 --- a/src/lib/data/PersistentStorage.cpp +++ b/src/lib/data/PersistentStorage.cpp @@ -831,6 +831,10 @@ std::shared_ptr PersistentStorage::getGraphForActiveTokenIds(const std::v nodeIds.push_back(symbol.id); } } + for (const StorageNode& node : m_sqliteStorage.getAllByIds(ids)) + { + nodeIds.push_back(node.id); + } for (const StorageFile& file : m_sqliteStorage.getAllByIds(ids)) { nodeIds.push_back(file.id);