src: Reviewed old files touched by bookmarks commit

* Removed some unused changes
* Disabled "No IDE connected" message in status bar
* Use threaded functor in status bar view
This commit is contained in:
Eberhard Graether
2017-02-13 20:55:37 +01:00
parent 637da119aa
commit d527991b46
7 changed files with 23 additions and 32 deletions
-7
View File
@@ -167,13 +167,6 @@ void IntermediateStorage::addError(const std::string& message, const FilePath& f
));
}
Id IntermediateStorage::addBookmark(const Bookmark& bookmark)
{
m_bookmarks.push_back(bookmark);
return -1;
}
void IntermediateStorage::forEachNode(std::function<void(const Id /*id*/, const StorageNode& /*data*/)> callback) const
{
for (std::map<Id, std::shared_ptr<StorageNode>>::const_iterator it = m_nodeIdsToData.begin(); it != m_nodeIdsToData.end(); it++)