]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docvwmdi/doc.h
Correct 'markup' for GetResourceHandle after recent change in wx/gdiobj.h.
[wxWidgets.git] / samples / docvwmdi / doc.h
index 9440f374e0460fde2df2cfe3a14ba73a777c85c5..f68b8a18ea2d563e84bea06baad09ad58f36235b 100644 (file)
@@ -5,14 +5,10 @@
 // Modified by:
 // Created:     04/01/98
 // RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Copyright:   (c) Julian Smart
+// Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-// #pragma interface
-#endif
-
 #ifndef __DOCSAMPLEH__
 #define __DOCSAMPLEH__
 
@@ -35,12 +31,12 @@ class DoodleSegment: public wxObject
  public:
   wxList lines;
 
-  DoodleSegment(void);
-  DoodleSegment(DoodleSegment& seg);
+  DoodleSegment(void){};
+  DoodleSegment(const 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 +52,8 @@ class DrawingDocument: public wxDocument
  private:
  public:
   wxList doodleSegments;
-  
-  DrawingDocument(void);
+
+  DrawingDocument(void){};
   ~DrawingDocument(void);
 
 #if wxUSE_STD_IOSTREAM