From: Julian Smart Date: Fri, 24 Jul 1998 22:04:21 +0000 (+0000) Subject: Corrected some problems X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f701d7abc1d35bdbee686cbe2b541b1b5119bf31?ds=inline Corrected some problems git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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"