]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docvwmdi/view.h
Fixed to fill in m_dir member when file selected so that GetDirectory
[wxWidgets.git] / samples / docvwmdi / view.h
index 074d940f0a9e99567f8c72121e01161300830024..74038ede6e17f8a7152737733d862db132cda6c1 100644 (file)
@@ -23,7 +23,7 @@ class MyCanvas: public wxScrolledWindow
   public:
     wxView *view;
     
-    MyCanvas(wxView *v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style);
+    MyCanvas(wxView *v, wxFrame *frame, const wxPoint& pos, const wxSize& size, long style);
     virtual void OnDraw(wxDC& dc);
     void OnMouseEvent(wxMouseEvent& event);
 
@@ -35,7 +35,7 @@ class MyTextWindow: public wxTextCtrl
   public:
     wxView *view;
     
-    MyTextWindow(wxView *v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style);
+    MyTextWindow(wxView *v, wxFrame *frame, const wxPoint& pos, const wxSize& size, long style);
 };
 
 class DrawingView: public wxView
@@ -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(): wxView() { 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);
 };