ui: changed wording in the UI to indexing instead of analysing

This commit is contained in:
Eberhard Graether
2016-06-14 12:45:13 +02:00
parent 83e4bcd049
commit 253af27067
14 changed files with 37 additions and 37 deletions
@@ -62,12 +62,12 @@ void QtProjectWizzardContentPreferences::populateForm(QGridLayout* layout, int&
layout->setRowMinimumHeight(row++, 20);
// analysis
layout->addWidget(createFormTitle("ANALYSIS"), row, QtProjectWizzardWindow::FRONT_COL, Qt::AlignLeft);
// indexing
layout->addWidget(createFormTitle("INDEXING"), row, QtProjectWizzardWindow::FRONT_COL, Qt::AlignLeft);
row++;
// analysis threads
QLabel* threadsLabel = createFormLabel("Analysis threads");
// indexer threads
QLabel* threadsLabel = createFormLabel("Indexer threads");
m_threads = new QComboBox();
for (int i = 1; i <= 24; i++)
@@ -79,7 +79,7 @@ void QtProjectWizzardContentPreferences::populateForm(QGridLayout* layout, int&
layout->addWidget(m_threads, row, QtProjectWizzardWindow::BACK_COL, Qt::AlignLeft);
addHelpButton(
"Number of parallel threads used to analyse your projects."
"Number of parallel threads used to index your projects."
, layout, row
);