From 609a37712d6c7f5bcb4fff58975e59ef71d0a3b6 Mon Sep 17 00:00:00 2001 From: mlangkabel Date: Tue, 24 Oct 2017 18:45:36 +0200 Subject: [PATCH] ui: added minor changes to the descriptions in the project wizard --- .../window/project_wizzard/QtProjectWizzardContentPath.cpp | 5 +++-- .../window/project_wizzard/QtProjectWizzardContentPaths.cpp | 2 +- .../qt/window/project_wizzard/QtProjectWizzardContentVS.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp index d9ee1c50..e802f3f9 100644 --- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp +++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp @@ -116,8 +116,9 @@ QtProjectWizzardContentPathCDB::QtProjectWizzardContentPathCDB( { setTitleString("Compilation Database (compile_commands.json)"); setHelpString( - "Sourcetrail will use all include paths and compiler flags from the compilation database and stay up-to-date " - "with changes on refresh.
" + "Select the compilation database file for the project. Sourcetrail will index your project based on the compile " + "commands this file contains using all include paths and compiler flags of these compile commands. The project " + "will stay up to date with changes in the compilation database on every refresh.
" "
" "You can make use of environment variables with ${ENV_VAR}." ); diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp index 1c7b1d97..376cd1cc 100644 --- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp +++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp @@ -238,7 +238,7 @@ QtProjectWizzardContentPathsCDBHeader::QtProjectWizzardContentPathsCDBHeader( setTitleString("Header Files & Directories to Index"); setHelpString( "Your Compilation Database already specifies which source files are part of your project. But Sourcetrail still needs to know which " - "header files to index as part of your project and which to skip. Skipping to index your system headers or external frameworks will " + "header files to index as part of your project and which to skip. Choosing to skip indexing your system headers or external frameworks will " "significantly improve the overall indexing performance.
" "
" "Use this list to define which header files should be indexed by Sourcetrail. Provide a directory to recursively add all contained files.
" diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp index 62e413c8..5b78b6bc 100644 --- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp +++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp @@ -23,7 +23,7 @@ Note: Sourcetrail's Visual Studio plugin has to be installed. Visual Studio has layout->addWidget(descriptionLabel, row, QtProjectWizzardWindow::BACK_COL); row++; - QPushButton* button = new QPushButton("Create CDB"); + QPushButton* button = new QPushButton("Create Compilation Database"); button->setObjectName("windowButton"); layout->addWidget(button, row, QtProjectWizzardWindow::BACK_COL); row++;