]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/canvas.cpp
mingw32/cygwin compilation fixes
[wxWidgets.git] / demos / forty / canvas.cpp
index 384d2bebbed510408edc32908a312b31b432c08e..d2be8edcf1c9a83617392f2b67d37db364f16d26 100644 (file)
@@ -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)