Skip to content

Commit 584152f

Browse files
TarasSydorravic-rs
authored andcommitted
fix question text when removing files
1 parent a3fc05f commit 584152f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/ProjNavigator/sources_form.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,8 @@ void SourcesForm::SlotRemoveFile() {
297297
auto fileSet = item->data(0, SetFileDataRole);
298298
if (!fileSet.isNull()) {
299299
auto questionStr =
300-
tr("Are you sure you want to remote %1 from the project? \n\nThe file "
301-
"will not be removed from the disk. It can be added back to the "
302-
"project afterwards.")
300+
tr("Are you sure you want to remove %1 from the project? \n\nThe file "
301+
"will not be removed from the disk.")
303302
.arg(strFileName);
304303
if (QMessageBox::question(this, {}, questionStr) == QMessageBox::No) return;
305304
m_projManager->setCurrentFileSet(fileSet.toString());

0 commit comments

Comments
 (0)