]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/stc/edit.h
fix sizing of extra control
[wxWidgets.git] / samples / stc / edit.h
index 4a7ecf79d135586491a09742b00dee5ded2c9f91..b96c9f5790dbe83944bca6b5906e30a4443a076f 100644 (file)
@@ -48,7 +48,11 @@ public:
     Edit (wxWindow *parent, wxWindowID id = wxID_ANY,
           const wxPoint &pos = wxDefaultPosition,
           const wxSize &size = wxDefaultSize,
-          long style = wxSUNKEN_BORDER|wxVSCROLL
+          long style = 
+#ifndef __WXMAC__
+          wxSUNKEN_BORDER|
+#endif
+          wxVSCROLL
          );
 
     //! destructor
@@ -148,7 +152,7 @@ class EditPrint: public wxPrintout {
 public:
 
     //! constructor
-    EditPrint (Edit *edit, wxChar *title = _T(""));
+    EditPrint (Edit *edit, const wxChar *title = _T(""));
 
     //! event handlers
     bool OnPrintPage (int page);