diff options
| author | Björn Hagemeister | 2014-04-15 14:31:18 +0200 |
|---|---|---|
| committer | Björn Hagemeister | 2014-04-15 14:31:18 +0200 |
| commit | 962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c (patch) | |
| tree | d16443283ba465604f02cc254fdfccd52c8ec26d /src/server | |
| parent | Fix user name detection in pvsclient. (diff) | |
| download | pvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.tar.gz pvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.tar.xz pvs2-962fe737d42bb5c9f8f1ce5bee87c5ea6160bc9c.zip | |
Changed exit text to be "exit?" instead of "Beenden?".
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/mainwindow/mainwindow.cpp | 2 |
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 |
