]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/minifram.h
reverted wxSocket changes of rev 48723 as they broke linking under non-Unix systems
[wxWidgets.git] / include / wx / mac / carbon / minifram.h
index 7f43f953b3f521f1c11d75372af8375f6957eee6..6d00c918ecae5eb91958040dd0e22b5aa0210693 100644 (file)
 #ifndef _WX_MINIFRAM_H_
 #define _WX_MINIFRAM_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "minifram.h"
-#endif
-
 #include "wx/frame.h"
 
 class WXDLLEXPORT wxMiniFrame: public wxFrame {
@@ -31,14 +27,14 @@ public:
            const wxString& title,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize,
-           long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION_HORIZ,
+           long style = wxCAPTION | wxRESIZE_BORDER | wxTINY_CAPTION_HORIZ,
            const wxString& name = wxFrameNameStr)
   {
       // Use wxFrame constructor in absence of more specific code.
       Create(parent, id, title, pos, size, style | wxFRAME_TOOL_WINDOW | wxFRAME_FLOAT_ON_PARENT , name);
   }
 
-  ~wxMiniFrame() {}
+  virtual ~wxMiniFrame() {}
 protected:
 };