(for MinGW and Cygwin)
- When using DLL, wxLocalFSHandler was not being exported - added
WXEXPORTDLL
-- A wxEvtHandler object was not removed from wxPendingEvents on deletion.
+- A wxEvtHandler object was not removed from wxPendingEvents on deletion.
wxPendingEventsLocker was being deleted in App before all wxEvtHandler
objects have been destroyed resulting in stale handler/lock
ptrs; fixed
Proper XP theme support is planned for 2.6
- disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles
if the version of CommCtl doesn't support it (XP)
+- fixed release mode build with VC 7.x (Martin Ecker)
wxMotif:
#endif
#endif // __WXDEBUG__ || wxUSE_DEBUG_CONTEXT
+// we must disable optimizations for VC.NET because otherwise its too eager
+// linker discards wxClassInfo objects in release build thus breaking many,
+// many things
+#if defined _MSC_VER && _MSC_VER >= 1300
+ #pragma optimize("", off)
+#endif
wxClassInfo wxObject::sm_classwxObject( wxT("wxObject"), 0, 0,
(int) sizeof(wxObject),
(wxObjectConstructorFn) 0 );
+// restore optimizations
+#if defined _MSC_VER && _MSC_VER >= 1300
+ #pragma optimize("", on)
+#endif
+
wxClassInfo* wxClassInfo::sm_first = NULL;
wxHashTable* wxClassInfo::sm_classTable = NULL;