]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/framecmn.cpp
no message
[wxWidgets.git] / src / common / framecmn.cpp
index 59e2c3c868b6a9afca270c0b6fc5992afd7fc8aa..e76404c9c9f512e4d637bd908d5cf665e6eef521 100644 (file)
@@ -3,12 +3,28 @@
 // Purpose:     common (for all platforms) wxFrame functions
 // Author:      Julian Smart, Vadim Zeitlin
 // Created:     01/02/97
-// Id:
+// Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-void wxFrame::OnIdle(wxIdleEvent& event)
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#include "wx/frame.h"
+#include "wx/menu.h"
+
+// wxGTK is a special case because it doesn't use the generic wxMenuItem
+// class, but it's own (already defined in wx/menu.h) one
+#ifndef __WXGTK__
+  #include "wx/menuitem.h"
+#endif //WXGTK
+
+void wxFrame::OnIdle(wxIdleEvent& WXUNUSED(event) )
 {
   DoMenuUpdates();
 }