#include "wx/toplevel.h"
#include "wx/string.h"
#include "wx/log.h"
+ #include "wx/module.h"
#endif //WX_PRECOMP
-#include "wx/module.h"
-
#include "wx/msw/uxtheme.h"
// ============================================================================
// we're prepared to handle the errors
wxLogNull noLog;
- if ( !m_dllUxTheme.Load(_T("uxtheme.dll")) )
+ if ( !m_dllUxTheme.Load(wxT("uxtheme.dll")) )
return false;
#define RESOLVE_UXTHEME_FUNCTION(type, funcname) \
- funcname = (type)m_dllUxTheme.GetSymbol(_T(#funcname)); \
+ funcname = (type)m_dllUxTheme.GetSymbol(wxT(#funcname)); \
if ( !funcname ) \
return false
}
#endif // wxUSE_UXTHEME
-