X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/73deed44e63d9d8d21a2ef6182bc685edc2bb0f9..a2d541ca9c552d1a30ba75970968a7a220f4955a:/src/common/appcmn.cpp diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index dca1e2af50..314a7654eb 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -43,6 +43,10 @@ #include "wx/tokenzr.h" #include "wx/utils.h" +#if wxUSE_GUI + #include "wx/artprov.h" +#endif // wxUSE_GUI + #if !defined(__WXMSW__) || defined(__WXMICROWIN__) #include // for SIGTRAP used by wxTrap() #endif //Win/Unix @@ -107,6 +111,9 @@ bool wxAppBase::OnInitGui() #ifdef __WXUNIVERSAL__ if ( !wxTheme::Get() && !wxTheme::CreateDefault() ) return FALSE; + wxArtProvider *art = wxTheme::Get()->GetArtProvider(); + if ( art ) + wxArtProvider::PushProvider(art); #endif // __WXUNIVERSAL__ return TRUE;