]> git.saurik.com Git - wxWidgets.git/commitdiff
Missing includes.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 13 Sep 2005 16:02:37 +0000 (16:02 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 13 Sep 2005 16:02:37 +0000 (16:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/ole/oleutils.h
src/msw/ole/activex.cpp

index 413155dd2443bc8b92aa8d14945e14cf3696b5a1..9c070e9e0c1664508761dcad3d90c49bc2c71728 100644 (file)
@@ -23,6 +23,7 @@
 // get IUnknown, REFIID &c
 #include <ole2.h>
 #include "wx/intl.h"
+#include "wx/log.h"
 
 // ============================================================================
 // General purpose functions and macros
@@ -253,4 +254,3 @@ inline void wxOleUninitialize() { }
 #endif // wxUSE_OLE/!wxUSE_OLE
 
 #endif  //_WX_OLEUTILS_H
-
index 8dea8ef980255b53d70b907d3a885b5e90266325..954c79c0e5f181977a441e7e9f0f880034daf91d 100644 (file)
@@ -2,25 +2,29 @@
 // Name:        msw/ole/activex.cpp
 // Purpose:     wxActiveXContainer implementation
 // Author:      Ryan Norton <wxprojects@comcast.net>, Lindsay Mathieson <???>
-// Modified by: 
+// Modified by:
 // Created:     11/07/04
 // RCS-ID:      $Id$
 // Copyright:   (c) 2003 Lindsay Mathieson, (c) 2005 Ryan Norton
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-//===========================================================================
-//  DECLARATIONS
-//===========================================================================
+// ============================================================================
+// declarations
+// ============================================================================
 
-//---------------------------------------------------------------------------
-// WX include
-//---------------------------------------------------------------------------
-#include "wx/wxprec.h"
+// ----------------------------------------------------------------------------
+// headers
+// ----------------------------------------------------------------------------
 
-#include "wx/msw/ole/activex.h"
+#include "wx/wxprec.h"
 
+#ifdef __BORLANDC__
+    #pragma hdrstop
+#endif
 
+#include "wx/dcclient.h"
+#include "wx/msw/ole/activex.h"
 
 
 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++