]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/propgrid/editors.h
in debug mode when clicking with the middle mouse button draw borders around all...
[wxWidgets.git] / include / wx / propgrid / editors.h
index 96298e2cc5f7445e344b2605e3b23383d6791164..fcb42d8bc76d69fad6be97a450b7566a0df81671 100644 (file)
@@ -214,7 +214,7 @@ wxString CLASSNAME::GetName() const \
 { \
     return wxS(#EDITOR); \
 } \
-wxPGEditor* wxPGEditor_##EDITOR = (wxPGEditor*) NULL;
+wxPGEditor* wxPGEditor_##EDITOR = NULL;
 
 
 //
@@ -434,7 +434,7 @@ public:
 // Editor class registeration macro (mostly for internal use)
 
 #define wxPGRegisterEditorClass(EDITOR) \
-    if ( wxPGEditor_##EDITOR == (wxPGEditor*) NULL ) \
+    if ( wxPGEditor_##EDITOR == NULL ) \
     { \
         wxPGEditor_##EDITOR = wxPropertyGrid::RegisterEditorClass( \
                 new wxPG##EDITOR##Editor ); \