resource: Updated documentation and smaller fixes
* updated documentation of: cdb loading, advanced settings, graph view * removed stats of search index * added global search paths to cdb summary
This commit is contained in:
@@ -690,9 +690,10 @@ StorageStats Storage::getStorageStats() const
|
||||
stats.nodeCount = m_sqliteStorage.getNodeCount();
|
||||
stats.edgeCount = m_sqliteStorage.getEdgeCount();
|
||||
|
||||
stats.charCount = m_tokenIndex.getCharCount();
|
||||
stats.wordCount = m_tokenIndex.getWordCount();
|
||||
stats.searchNodeCount = m_tokenIndex.getNodeCount();
|
||||
// Takes too much time
|
||||
// stats.charCount = m_tokenIndex.getCharCount();
|
||||
// stats.wordCount = m_tokenIndex.getWordCount();
|
||||
// stats.searchNodeCount = m_tokenIndex.getNodeCount();
|
||||
|
||||
stats.fileCount = m_sqliteStorage.getFileCount();
|
||||
stats.fileLOCCount = m_sqliteStorage.getFileLOCCount();
|
||||
|
||||
@@ -534,6 +534,13 @@ void QtProjectWizzard::showSummary()
|
||||
summary->addContent(headers, false, true);
|
||||
connectShowFiles(headers);
|
||||
|
||||
summary->addContent(new QtProjectWizzardContentPathsHeaderSearchGlobal(settings, window), false, true);
|
||||
|
||||
if (QSysInfo::macVersion() != QSysInfo::MV_None)
|
||||
{
|
||||
summary->addContent(new QtProjectWizzardContentPathsFrameworkSearchGlobal(settings, window), false, false);
|
||||
}
|
||||
|
||||
data->hideLanguage();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user