From e19e763120c1594e0c8a7d18bf329c824acd10b0 Mon Sep 17 00:00:00 2001 From: Wong Cho Ching Date: Thu, 30 Jan 2014 16:39:20 +0800 Subject: [PATCH] Added title for the confirm message --- src/gui/widgets/ControllerRackView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/widgets/ControllerRackView.cpp b/src/gui/widgets/ControllerRackView.cpp index dcca26635..85116f7ac 100644 --- a/src/gui/widgets/ControllerRackView.cpp +++ b/src/gui/widgets/ControllerRackView.cpp @@ -125,6 +125,7 @@ void ControllerRackView::deleteController( ControllerView * _view ) { QMessageBox msgBox; msgBox.setIcon( QMessageBox::Question ); + msgBox.setWindowTitle( tr("Confirm Delete") ); msgBox.setText( tr("Confirm delete? There are existing connection(s) " "associted with this controller. There is no way to undo.") ); msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);