ui: added minor changes to the descriptions in the project wizard

This commit is contained in:
mlangkabel
2017-10-24 18:45:36 +02:00
parent 0c2fa352c1
commit 609a37712d
3 changed files with 5 additions and 4 deletions
@@ -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.<br />"
"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.<br />"
"<br />"
"You can make use of environment variables with ${ENV_VAR}."
);
@@ -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.<br />"
"<br />"
"Use this list to define which header files should be indexed by Sourcetrail. Provide a directory to recursively add all contained files.<br />"
@@ -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++;