]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/life/reader.h
refactor some existing themes methods in a new base wxStdRenderer class (before addin...
[wxWidgets.git] / demos / life / reader.h
index 27a10af30ee76d469bf981756c2dcd900f6ae16f..fc1f3971254fe13eb7dd974bb21ca166f0582fba 100644 (file)
 #ifndef _LIFE_READER_H_
 #define _LIFE_READER_H_
 
-#ifdef __GNUG__
-    #pragma interface "reader.h"
-#endif
-
 // for compilers that support precompilation, includes "wx/wx.h"
 #include "wx/wxprec.h"
 
@@ -45,7 +41,7 @@ public:
     inline wxArrayString GetShape() const       { return m_shape; };
     inline LifePattern   GetPattern() const
     {
-        return LifePattern(_(""), m_description, m_rules, m_shape);
+        return LifePattern(wxEmptyString, m_description, m_rules, m_shape);
     };
 
 private: