]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docvwmdi/doc.h
Fixes to allow compilation with no wchar_t (djgpp probably has a real wchar_t
[wxWidgets.git] / samples / docvwmdi / doc.h
index b002a81f5b2241e820b18ca7f087d96d48cfea96..4b01bc5a597f5b2c38a88aa0a146f803805f9484 100644 (file)
@@ -35,12 +35,12 @@ class DoodleSegment: public wxObject
  public:
   wxList lines;
 
-  DoodleSegment(void);
+  DoodleSegment(void){};
   DoodleSegment(DoodleSegment& seg);
   ~DoodleSegment(void);
 
   void Draw(wxDC *dc);
-  
+
 #if wxUSE_STD_IOSTREAM
   wxSTD ostream& SaveObject(wxSTD ostream& text_stream);
   wxSTD istream& LoadObject(wxSTD istream& text_stream);
@@ -56,8 +56,8 @@ class DrawingDocument: public wxDocument
  private:
  public:
   wxList doodleSegments;
-  
-  DrawingDocument(void);
+
+  DrawingDocument(void){};
   ~DrawingDocument(void);
 
 #if wxUSE_STD_IOSTREAM