]> git.saurik.com Git - wxWidgets.git/commitdiff
Added missing (trivial) implementation file for wxMiniFrame on OS/2.
authorStefan Neis <Stefan.Neis@t-online.de>
Wed, 9 Apr 2008 21:30:02 +0000 (21:30 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Wed, 9 Apr 2008 21:30:02 +0000 (21:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/files.bkl
src/os2/minifram.cpp [new file with mode: 0644]

index c20c976abc4a4e0e54f6d30a44e62d227c52ea7f..662c1f5590d4474afe8c44de608a9a1cab5ee3c3 100644 (file)
@@ -2064,6 +2064,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
     src/os2/menu.cpp
     src/os2/menuitem.cpp
     src/os2/metafile.cpp
+    src/os2/minifram.cpp
     src/os2/msgdlg.cpp
     src/os2/nativdlg.cpp
     src/os2/notebook.cpp
diff --git a/src/os2/minifram.cpp b/src/os2/minifram.cpp
new file mode 100644 (file)
index 0000000..b42905e
--- /dev/null
@@ -0,0 +1,21 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        minifram.cpp
+// Purpose:     wxMiniFrame
+// Author:      Julian Smart
+// Modified by:
+// Created:     04/01/98
+// RCS-ID:      $Id: minifram.cpp 49299 2007-10-21 18:07:29Z PC $
+// Copyright:   (c) Julian Smart
+// Licence:     wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#if wxUSE_MINIFRAME
+
+#include "wx/minifram.h"
+
+IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame)
+
+#endif // wxUSE_MINIFRAME