]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/pile.cpp
-1->wxID_ANY, TRUE->true, FALSE->false and tabs replacements
[wxWidgets.git] / demos / forty / pile.cpp
index cf1564751d69325eab66412e2f50c4d321ae429e..b2fc9d18f40b283495acce1f6d8e9c83110ff166 100644 (file)
@@ -8,7 +8,7 @@
 // Copyright:   (c) 1993-1998 Chris Breeze
 // Licence:    wxWindows licence
 //---------------------------------------------------------------------------
-// Last modified: 22nd July 1998 - ported to wxWindows 2.0
+// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
 /////////////////////////////////////////////////////////////////////////////
 //+-------------------------------------------------------------+
 //| Description:                                                                                               |
@@ -224,9 +224,9 @@ bool Pile::CanCardLeave(Card* card)
 {
     for (int i = 0; i <= m_topCard; i++)
     {
-       if (card == m_cards[i]) return TRUE;
+       if (card == m_cards[i]) return true;
     }
-    return FALSE;
+    return false;
 }
 
 // Calculate how far x, y is from top card in the pile
@@ -294,9 +294,9 @@ bool Pile::Overlap(int x, int y)
     if (x >= cardX - Card::GetWidth()  && x <= cardX + Card::GetWidth() &&
         y >= cardY - Card::GetHeight() && y <= cardY + Card::GetHeight())
     {
-           return TRUE;
+           return true;
     }
-    return FALSE;
+    return false;
 }