wxNotebook fixes for Win16; VC++ 4 fixes for OLE files; wxGA_SMOOTH flag (wxMSW);
wxFRAME_FLOAT_ON_PARENT style for frames (wxMSW) to get traditional MSW behaviour. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -184,6 +184,24 @@ void wxLogRelease(const char *szInterface, ULONG cRef)
|
||||
wxLogTrace("After %s::Release: m_cRef = %d", szInterface, cRef - 1);
|
||||
}
|
||||
|
||||
#elif defined(__WXDEBUG__) && defined(__VISUALC__) && (__VISUALC__ <= 1000)
|
||||
|
||||
// For VC++ 4
|
||||
void wxLogQueryInterface(const char *szInterface, REFIID riid)
|
||||
{
|
||||
wxLogTrace("%s::QueryInterface", szInterface);
|
||||
}
|
||||
|
||||
void wxLogAddRef(const char *szInterface, ULONG cRef)
|
||||
{
|
||||
wxLogTrace("After %s::AddRef: m_cRef = %d", szInterface, cRef + 1);
|
||||
}
|
||||
|
||||
void wxLogRelease(const char *szInterface, ULONG cRef)
|
||||
{
|
||||
wxLogTrace("After %s::Release: m_cRef = %d", szInterface, cRef - 1);
|
||||
}
|
||||
|
||||
#endif //WXDEBUG
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user