]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/pile.h
ActiveX events should be sent to the window, not it's parent.
[wxWidgets.git] / demos / forty / pile.h
index 49eb8c9b54338f3cf6f3fbf6f0c5328d6e075c84..372fb9d1cefda88fac71132dd0f7b597d39ab4c7 100644 (file)
@@ -66,9 +66,10 @@ public:
        virtual Card* RemoveTopCard(wxDC& pDC, int xOffset = 0, int yOffset = 0);
 
        // Functions to add a card to the top of a pile
-       virtual bool AcceptCard(Card*) { return FALSE; }
+       virtual bool AcceptCard(Card*) { return false; }
        virtual void AddCard(Card* card);       // Add card to top of pile
        virtual void AddCard(wxDC& pDC, Card* card);    // Add card + redraw it
+        void SetPos(int x,int y) {m_x = x;m_y = y;};
 
 protected:
        int   m_x, m_y;                         // Position of the pile on the screen