Skip to content

Commit a3fc05f

Browse files
TarasSydorravic-rs
authored andcommitted
remove question msgbox title
1 parent d667561 commit a3fc05f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ProjNavigator/sources_form.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,7 @@ void SourcesForm::SlotRemoveFile() {
301301
"will not be removed from the disk. It can be added back to the "
302302
"project afterwards.")
303303
.arg(strFileName);
304-
if (QMessageBox::question(this, tr("Remove file"), questionStr) ==
305-
QMessageBox::No)
306-
return;
304+
if (QMessageBox::question(this, {}, questionStr) == QMessageBox::No) return;
307305
m_projManager->setCurrentFileSet(fileSet.toString());
308306
int ret = m_projManager->deleteFile(strFileName);
309307
if (0 == ret) {

0 commit comments

Comments
 (0)