diff options
author | con <[email protected]> | 2010-12-01 14:35:36 +0100 |
---|---|---|
committer | con <[email protected]> | 2010-12-01 18:48:40 +0100 |
commit | c598118d5b970c7dc229e5a6a21d5beb880bcad1 (patch) | |
tree | 4beedd123cc0310186524d963d6b1fe763018e32 /src/plugins/git/settingspage.cpp | |
parent | e650076fd3051c444c7f5f965071cf6edb2884a7 (diff) |
Update the filter matches for the settings dialog.
Task-number: QTCREATORBUG-2936
Diffstat (limited to 'src/plugins/git/settingspage.cpp')
-rw-r--r-- | src/plugins/git/settingspage.cpp | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/plugins/git/settingspage.cpp b/src/plugins/git/settingspage.cpp index 423cd920c70..e2fa5271e62 100644 --- a/src/plugins/git/settingspage.cpp +++ b/src/plugins/git/settingspage.cpp @@ -98,11 +98,19 @@ void SettingsPageWidget::setSystemPath() QString SettingsPageWidget::searchKeywords() const { QString rc; - QTextStream(&rc) << ' ' << m_ui.pathlabel->text() << ' ' << m_ui.logCountLabel->text() - << ' ' << m_ui.timeoutLabel->text() - << ' ' << m_ui.promptToSubmitCheckBox->text() - << ' ' << m_ui.promptToSubmitCheckBox->text() - << ' ' << m_ui.environmentGroupBox->title(); + QLatin1Char sep(' '); + QTextStream(&rc) + << sep << m_ui.environmentGroupBox->title() + << sep << m_ui.pathlabel->text() + << sep << m_ui.winHomeCheckBox->text() + << sep << m_ui.groupBox->title() + << sep << m_ui.logCountLabel->text() + << sep << m_ui.timeoutLabel->text() + << sep << m_ui.promptToSubmitCheckBox->text() + << sep << m_ui.promptToSubmitCheckBox->text() + << sep << m_ui.gitkGroupBox->title() + << sep << m_ui.gitkOptionsLabel->text() + ; rc.remove(QLatin1Char('&')); return rc; } |