From f701d7abc1d35bdbee686cbe2b541b1b5119bf31 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Fri, 24 Jul 1998 22:04:21 +0000 Subject: [PATCH] Corrected some problems git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/intl.h | 1 - src/common/framecmn.cpp | 9 +++++++++ src/common/wincmn.cpp | 9 +++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/include/wx/intl.h b/include/wx/intl.h index 3bbdd43355..6cbd5e2f21 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -107,7 +107,6 @@ private: // ---------------------------------------------------------------------------- // global functions // ---------------------------------------------------------------------------- - WXDLLEXPORT wxLocale* wxGetLocale(); // get the translation of the string in the current locale diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index 4acd32c428..00ceb8bfe3 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -8,7 +8,16 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +// 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" +#include "wx/menuitem.h" void wxFrame::OnIdle(wxIdleEvent& WXUNUSED(event) ) { diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 28fd6ab1d1..087ab89f12 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -9,6 +9,15 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif + +#include "wx/frame.h" + #include "wx/defs.h" #include "wx/window.h" -- 2.47.2