X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/70d26c3f4ffb24d50457d405c9595fd23f9e5b7c..73486557c0f533a7da12aee1311a3898e4a6f266:/demos/forty/canvas.cpp?ds=sidebyside diff --git a/demos/forty/canvas.cpp b/demos/forty/canvas.cpp index 384d2bebbe..d2be8edcf1 100644 --- a/demos/forty/canvas.cpp +++ b/demos/forty/canvas.cpp @@ -198,25 +198,6 @@ void FortyCanvas::OnMouseEvent(wxMouseEvent& event) void FortyCanvas::SetCursorStyle(int x, int y) { - if (m_game->HaveYouWon()) - { - if (wxMessageBox("Do you wish to play again?", - "Well Done, You have won!", wxYES_NO | wxICON_QUESTION) == wxYES) - { - m_game->Deal(); - - wxClientDC dc(this); - PrepareDC(dc); - dc.SetFont(* m_font); - m_game->Redraw(dc); - } - else - { - // user cancelled the dialog - exit the app - ((wxFrame*)GetParent())->Close(TRUE); - } - } - // Only set cursor to a hand if 'helping hand' is enabled and // the card under the cursor can go somewhere if (m_game->CanYouGo(x, y) && m_helpingHand)