use wx/dynlib.h and not wx/dynload.h (patch 1448691)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-03-31 00:03:15 +00:00
parent 735dec5e62
commit dedba2a11f

View File

@ -72,7 +72,7 @@ typedef HRESULT (__stdcall *PFNWXUENABLETHEMING)(BOOL);
// we always define this class, even if wxUSE_UXTHEME == 0, but we just make it
// empty in this case -- this allows to use it elsewhere without any #ifdefs
#if wxUSE_UXTHEME
#include "wx/dynload.h"
#include "wx/dynlib.h"
#define wxUX_THEME_DECLARE(type, func) type func;
#else