From f5ea14fb9e4205d7474f49b9ca99d98bf20ce60b Mon Sep 17 00:00:00 2001 From: lotodore Date: Tue, 16 Oct 2007 22:16:41 +0000 Subject: [PATCH] Updated version outdated messages. --- src/gui/qt/mainwindow/mainwindowimpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/qt/mainwindow/mainwindowimpl.cpp b/src/gui/qt/mainwindow/mainwindowimpl.cpp index 08932c50..c859202f 100755 --- a/src/gui/qt/mainwindow/mainwindowimpl.cpp +++ b/src/gui/qt/mainwindow/mainwindowimpl.cpp @@ -3521,7 +3521,7 @@ void mainWindowImpl::networkError(int errorID, int /*osErrorID*/) { break; case ERR_NET_VERSION_NOT_SUPPORTED: { QMessageBox::warning(this, tr("Network Error"), - tr("The PokerTH server does not support this version of the game.\nPlease update PokerTH."), + tr("The PokerTH server does not support this version of the game.\nPlease go to http://www.pokerth.net/ and download the latest version."), QMessageBox::Close); } break; case ERR_NET_SERVER_FULL: @@ -3656,12 +3656,12 @@ void mainWindowImpl::networkNotification(int notificationId) break; case NTF_NET_NEW_RELEASE_AVAILABLE: { QMessageBox::information(this, tr("Network Notification"), - tr("A new release of PokerTH is available. Please go to http://www.pokerth.net/ and download the latest version."), + tr("A new release of PokerTH is available.\nPlease go to http://www.pokerth.net/ and download the latest version."), QMessageBox::Close); } break; case NTF_NET_OUTDATED_BETA: { QMessageBox::information(this, tr("Network Notification"), - tr("This beta release of PokerTH is outdated. Please go to http://www.pokerth.net/ and download the latest version."), + tr("This beta release of PokerTH is outdated.\nPlease go to http://www.pokerth.net/ and download the latest version."), QMessageBox::Close); } break; }