summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.cpp
diff options
context:
space:
mode:
authorBjörn Hagemeister2014-04-15 14:31:18 +0200
committerBjörn Hagemeister2014-04-15 14:31:18 +0200
commit962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c (patch)
treed16443283ba465604f02cc254fdfccd52c8ec26d /src/server/mainwindow/mainwindow.cpp
parentFix user name detection in pvsclient. (diff)
downloadpvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.tar.gz
pvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.tar.xz
pvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.zip
Changed exit text to be "exit?" instead of "Beenden?".
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 f4c1809..00ac706 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -191,7 +191,7 @@ void MainWindow::savePosition(ConnectionFrame *cf)
void MainWindow::closeEvent(QCloseEvent* e)
{
- int ret = QMessageBox::question(this, "Test", "Beenden?", 0, 1, 2);
+ int ret = QMessageBox::question(this, "Test", "Exit?", 0, 1, 2);
if (ret == 1)
QApplication::exit(0);
else