summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.cpp
diff options
context:
space:
mode:
authorJonathan Bauer2016-01-29 17:29:07 +0100
committerJonathan Bauer2016-01-29 17:29:07 +0100
commit272aaf3d4f32d866c0f50ec5f31ae60cddb8c0fa (patch)
treee9cf6d033a92ce3e300541f1f83d8187f2147f25 /src/server/mainwindow/mainwindow.cpp
parentfix missing german translation for "What's this?" (diff)
downloadpvs2-272aaf3d4f32d866c0f50ec5f31ae60cddb8c0fa.tar.gz
pvs2-272aaf3d4f32d866c0f50ec5f31ae60cddb8c0fa.tar.xz
pvs2-272aaf3d4f32d866c0f50ec5f31ae60cddb8c0fa.zip
properly close the toolbar (?)
Diffstat (limited to 'src/server/mainwindow/mainwindow.cpp')
-rw-r--r--src/server/mainwindow/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp
index 854d921..400f40a 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -438,7 +438,7 @@ ConnectionFrame* MainWindow::getSelectedFrame()
*/
void MainWindow::closeEvent(QCloseEvent* e)
{
- int ret = QMessageBox::question(this, "Test", "Exit?", 0, 1, 2);
+ int ret = QMessageBox::question(this, "Question", "Are you sure you want to exit?", 0, 1, 2);
if (ret == 1)
QApplication::exit(0);
else