From: Guillermo Rodriguez Garcia Date: Thu, 9 Mar 2000 12:07:01 +0000 (+0000) Subject: Removed an extra scope resolution operator in the declaration of class LifeShape X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6da3a3ef1f933c5a8ed746222bdce12990ce0aab Removed an extra scope resolution operator in the declaration of class LifeShape git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/demos/life/game.h b/demos/life/game.h index 12bb4ff3dd..f88644cb9b 100644 --- a/demos/life/game.h +++ b/demos/life/game.h @@ -50,11 +50,11 @@ struct Cell class LifeShape { public: - LifeShape::LifeShape(wxString name, - wxString desc, - int width, - int height, - char *data) + LifeShape(wxString name, + wxString desc, + int width, + int height, + char *data) { m_name = name; m_desc = desc;