///////////////////////////////////////////////////////////////////////////////
-// Name: msw/ole/access.cpp
+// Name: src/msw/ole/access.cpp
// Purpose: implementation of wxIAccessible and wxAccessible
// Author: Julian Smart
// Modified by:
#if defined(__BORLANDC__)
#pragma hdrstop
#endif
+
#ifndef WX_PRECOMP
-#include "wx/window.h"
+ #include "wx/window.h"
#endif
-#include "wx/setup.h"
-
#if wxUSE_OLE && wxUSE_ACCESSIBILITY
#include "wx/log.h"
}
else
{
- if (description.IsEmpty())
+ if (description.empty())
{
* pszDescription = NULL;
return S_FALSE;
}
else
{
- if (helpString.IsEmpty())
+ if (helpString.empty())
{
* pszHelp = NULL;
return S_FALSE;
}
else
{
- if (keyboardShortcut.IsEmpty())
+ if (keyboardShortcut.empty())
{
* pszKeyboardShortcut = NULL;
return S_FALSE;