]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/game.h
Further fixes to Dialog Editor; additions to .dsp files
[wxWidgets.git] / demos / life / game.h
index e06599068c54b51f562e83224fa5f8638a032ce4..dea8c45572acaeb702018815ad38653440fc0d63 100644 (file)
@@ -95,10 +95,10 @@ public:
     inline void      SetBorderWrap(bool on)  { m_wrap = on; };
 
     // cells
-    inline bool      IsAlive(int i, int j) const;
-    inline bool      IsAlive(Cell c) const;
-    inline int       GetX(Cell c) const;
-    inline int       GetY(Cell c) const;
+    bool             IsAlive(int i, int j) const;
+    bool             IsAlive(Cell c) const;
+    int              GetX(Cell c) const;
+    int              GetY(Cell c) const;
     const CellArray* GetCells() const        { return &m_cells; };
     const CellArray* GetChangedCells() const { return &m_changed; };