]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docvwmdi/view.h
CodeWarrior Support (no defines in project possible)
[wxWidgets.git] / samples / docvwmdi / view.h
index 074d940f0a9e99567f8c72121e01161300830024..2f068c7c049eb46e4ddb966ef34f1de5fb97acfc 100644 (file)
@@ -46,12 +46,12 @@ class DrawingView: public wxView
   wxFrame *frame;
   MyCanvas *canvas;
   
-  DrawingView(void) { canvas = NULL; frame = NULL; };
+  DrawingView(void) { canvas = (MyCanvas *) NULL; frame = (wxFrame *) NULL; };
   ~DrawingView(void) {};
 
   bool OnCreate(wxDocument *doc, long flags);
   void OnDraw(wxDC *dc);
-  void OnUpdate(wxView *sender, wxObject *hint = NULL);
+  void OnUpdate(wxView *sender, wxObject *hint = (wxObject *) NULL);
   bool OnClose(bool deleteWindow = TRUE);
 
   void OnCut(wxCommandEvent& event);
@@ -67,12 +67,12 @@ class TextEditView: public wxView
   wxFrame *frame;
   MyTextWindow *textsw;
   
-  TextEditView(wxDocument *doc = NULL): wxView(doc) { frame = NULL; textsw = NULL; }
+  TextEditView(wxDocument *doc = (wxDocument *) NULL): wxView(doc) { frame = (wxFrame *) NULL; textsw = (MyTextWindow *) NULL; }
   ~TextEditView(void) {}
 
   bool OnCreate(wxDocument *doc, long flags);
   void OnDraw(wxDC *dc);
-  void OnUpdate(wxView *sender, wxObject *hint = NULL);
+  void OnUpdate(wxView *sender, wxObject *hint = (wxObject *) NULL);
   bool OnClose(bool deleteWindow = TRUE);
 };