]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/frame.h
Trying to hide evidence of my negative programming skills...
[wxWidgets.git] / include / wx / frame.h
index fd9afe2a918f0af39c7ddc4fc7268ebc94452e4e..4d68e8903213e8260cf0aed159de82be70fca20e 100644 (file)
@@ -318,6 +318,28 @@ protected:
     #endif
 #elif defined(__WXPM__)
     #include "wx/os2/frame.h"
+    #ifndef __WXUNIVERSAL__
+
+    class WXDLLEXPORT wxFrame : public wxFrameOS2
+    {
+    public:
+        // construction
+        wxFrame() { Init(); }
+        wxFrame(wxWindow *parent,
+                   wxWindowID id,
+                   const wxString& title,
+                   const wxPoint& pos = wxDefaultPosition,
+                   const wxSize& size = wxDefaultSize,
+                   long style = wxDEFAULT_FRAME_STYLE,
+                   const wxString& name = wxFrameNameStr)
+        {
+            Init();
+            Create(parent, id, title, pos, size, style, name);
+        }
+        DECLARE_DYNAMIC_CLASS(wxFrame)
+    };
+    #endif
+
 #elif defined(__WXSTUBS__)
     #include "wx/stubs/frame.h"
 #endif