VCS: Fix displaced comment

Change-Id: I71f0169951b5dfd9cedeff82006b757dd4df756e
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Orgad Shaneh
2014-09-16 17:16:09 +03:00
committed by Orgad Shaneh
parent df50e214f3
commit 41942ac088

View File

@@ -561,9 +561,9 @@ void SubmitEditorWidget::descriptionTextChanged()
d->m_description = cleanupDescription(d->m_ui.description->toPlainText()); d->m_description = cleanupDescription(d->m_ui.description->toPlainText());
wrapDescription(); wrapDescription();
trimDescription(); trimDescription();
// append field entries
foreach (const SubmitFieldWidget *fw, d->m_fieldWidgets) foreach (const SubmitFieldWidget *fw, d->m_fieldWidgets)
d->m_description += fw->fieldValues(); d->m_description += fw->fieldValues();
// append field entries
updateSubmitAction(); updateSubmitAction();
} }