From 76aed77f59e3d343fdffa575ed9f84020901440a Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Tue, 23 Apr 2019 14:14:49 +0200 Subject: [PATCH] ui: renamed 'relations' to 'references' in overview stats --- src/lib/component/controller/CodeController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/component/controller/CodeController.cpp b/src/lib/component/controller/CodeController.cpp index f2cb530c..c678bda7 100644 --- a/src/lib/component/controller/CodeController.cpp +++ b/src/lib/component/controller/CodeController.cpp @@ -79,7 +79,7 @@ void CodeController::handleMessage(MessageActivateAll* message) ss << "\t" + std::to_string(stats.fileLOCCount) + " lines of code\n"; ss << "\n"; ss << "\t" + std::to_string(stats.nodeCount) + " symbols\n"; - ss << "\t" + std::to_string(stats.edgeCount) + " relations\n"; + ss << "\t" + std::to_string(stats.edgeCount) + " references\n"; ss << "\n"; ss << "\t" + std::to_string(errorCount.total) + " errors (" + std::to_string(errorCount.fatal) + " fatal)\n"; ss << "\n";