From c00299481d78afe5ee754f2345497b6b66dfc17b Mon Sep 17 00:00:00 2001 From: doitux Date: Fri, 23 Dec 2011 19:49:09 +0000 Subject: [PATCH] remove debug output --- src/gui/qt/gametable/gametableimpl.cpp | 6 +++--- src/gui/qt/startwindow/startwindowimpl.cpp | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/gui/qt/gametable/gametableimpl.cpp b/src/gui/qt/gametable/gametableimpl.cpp index 4143e2d7..80195aa4 100755 --- a/src/gui/qt/gametable/gametableimpl.cpp +++ b/src/gui/qt/gametable/gametableimpl.cpp @@ -959,17 +959,17 @@ void gameTableImpl::refreshPlayerAvatar() switch(getCurrentSeatState((*it_c))) { case SEAT_ACTIVE: { - qDebug() << seatPlace << "AVATAR ACTIVE"; +// qDebug() << seatPlace << "AVATAR ACTIVE"; playerAvatarLabelArray[(*it_c)->getMyID()]->setPixmapAndCountry(avatarPic, countryString, seatPlace); } break; case SEAT_AUTOFOLD: { - qDebug() << seatPlace << "AVATAR AUTOFOLD"; +// qDebug() << seatPlace << "AVATAR AUTOFOLD"; playerAvatarLabelArray[(*it_c)->getMyID()]->setPixmapAndCountry(avatarPic, countryString, seatPlace, TRUE); } break; case SEAT_STAYONTABLE: { - qDebug() << seatPlace << "AVATAR STAYONTABLE"; +// qDebug() << seatPlace << "AVATAR STAYONTABLE"; playerAvatarLabelArray[(*it_c)->getMyID()]->setPixmapAndCountry(avatarPic, countryString, seatPlace, TRUE); } break; diff --git a/src/gui/qt/startwindow/startwindowimpl.cpp b/src/gui/qt/startwindow/startwindowimpl.cpp index 3b4d72b2..4d87b780 100644 --- a/src/gui/qt/startwindow/startwindowimpl.cpp +++ b/src/gui/qt/startwindow/startwindowimpl.cpp @@ -592,7 +592,6 @@ void startWindowImpl::callSettingsDialog() void startWindowImpl::showTimeoutDialog(int msgID, unsigned duration) { - qDebug() << "show timeout"; if(myTimeoutDialog->isHidden()) { myTimeoutDialog->setMySession(mySession); myTimeoutDialog->setMsgID((NetTimeoutReason)msgID);