Skip to content

Commit 2f98148

Browse files
committed
fixed typo in rc.customShortDocEnd definition
1 parent f669b8e commit 2f98148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doxygensettingswidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ DoxygenSettingsStruct DoxygenSettingsWidget::settings() const
7070
rc.customEnding = QString(ui->edit_endTag->text()).replace("\\n", "\n");
7171
rc.customNewLine = QString(ui->edit_newLine->text()).replace("\\n", "\n");
7272
rc.customShortDoc = QString(ui->edit_shortTag->text()).replace("\\n", "\n");
73-
rc.customShortDocEnd = QString(ui->edit_shortTagEnd->text()).replace("\\\n", "\n");
73+
rc.customShortDocEnd = QString(ui->edit_shortTagEnd->text()).replace("\\n", "\n");
7474
rc.fileComment = ui->fileCommentText->toPlainText();
7575
rc.fileCommentHeaders = ui->commentHeaderFiles->isChecked();
7676
rc.fileCommentImpl = ui->commentImplementationFiles->isChecked();

0 commit comments

Comments
 (0)