Changelogs
Overview
These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04
Changelog for wxWidgets (70435 changes):
2013-05-16 16:33 VZ, revision 74003- M /wxWidgets/trunk/docs/changes.txt
- M /wxWidgets/trunk/include/wx/generic/dirctrlg.h
- M /wxWidgets/trunk/interface/wx/dirctrl.h
- M /wxWidgets/trunk/samples/widgets/dirctrl.cpp
- M /wxWidgets/trunk/src/generic/dirctrlg.cpp
2013-05-16 16:33 VZ, revision 74002Add wxEVT_DIRCTRL_FILEACTIVATED wxDirCtrl event. Allow processing double clicks on the files in the directory control. Closes #15208.
- M /wxWidgets/trunk/docs/changes.txt
- M /wxWidgets/trunk/include/wx/generic/dirctrlg.h
- M /wxWidgets/trunk/interface/wx/dirctrl.h
- M /wxWidgets/trunk/samples/widgets/dirctrl.cpp
- M /wxWidgets/trunk/src/generic/dirctrlg.cpp
2013-05-16 16:32 VZ, revision 74001Rename wxEVT_DIRCTRL_CHANGED to wxEVT_DIRCTRL_SELECTIONCHANGED. This is more consistent with the existing wxEVT_FILECTRL_SELECTIONCHANGED. Closes #15209.
- M /wxWidgets/trunk/docs/changes.txt
- M /wxWidgets/trunk/include/wx/generic/grideditors.h
- M /wxWidgets/trunk/interface/wx/grid.h
- M /wxWidgets/trunk/src/generic/grideditors.cpp
2013-05-16 16:32 VZ, revision 74000Allow associating a validator with wxGridCellTextEditor. Add wxGridCellTextEditor::SetValidator() for finer control over text input in wxGrid. Closes #15176.
2013-05-16 16:15 VS, revision 73999Re-enable yet another hopefully harmless test in wxAny test case.
- M /wxWidgets/trunk/interface/wx/thread.h
- M /wxWidgets/trunk/src/msw/thread.cpp
- M /wxWidgets/trunk/src/os2/thread.cpp
- M /wxWidgets/trunk/src/osx/carbon/thread.cpp
- M /wxWidgets/trunk/src/unix/threadpsx.cpp
2013-05-16 16:15 VS, revision 73998Call wxThread::Create() from Run() automatically. In the common case, when Run() is called immediately after Create() and default stack size is used, it's unnecessarily verbose. Just create the thread in Run() if it wasn't done explicitly yet.
2013-05-16 16:15 VS, revision 73997Move POSIX implementation of wxThread::Create() to wxThreadInternal. No real changes, just refactoring to follow the same pattern as other implementations use.
2013-05-16 13:40 VZ, revision 73996Lock m_critsect in POSIX wxThread::Create(). This is the documented behavior: all methods accessing m_internal should lock it.
2013-05-16 08:18 JJ, revision 73995Re-enable wxAny<double>::GetAs<wxString>() test.
2013-05-16 03:45 VZ, revision 73994m_useExtendedPrecision is only used if the macro wxUSE_APPLE_IEEE is defined
2013-05-15 23:45 VZ, revision 73993Enable wxAny<double>::GetAs<unsigned long>() test.
2013-05-15 23:45 VZ, revision 73992Re-enable a single m_anyDoubleDouble1 test in wxAny test case.
2013-05-15 22:02 VZ, revision 73991Fix wxXmlNode self-assignment. Don't lose the node contents if it's assigned to itself.
2013-05-15 22:01 VZ, revision 73990Reenable m_anyBool1 tests in wxAny test case too.
- M /wxWidgets/trunk/include/wx/xml/xml.h
- M /wxWidgets/trunk/src/xml/xml.cpp
- M /wxWidgets/trunk/tests/xml/xmltest.cpp
2013-05-15 15:05 VZ, revision 73989Fix memory leak in wxXmlNode::operator=(). We must delete all children and attributes in the node being overwritten and not just the first one of each. Add a unit test exercising this code to be able to check that valgrind doesn't report memory leak any more after the fix.
2013-05-15 15:05 VZ, revision 73988Re-enable conversions of wxAny to boolean tests.
2013-05-15 15:05 VZ, revision 73987Restore ability to parse hours only with wxDateTime::ParseTime(). This was accidentally removed in r51059, but worked in 2.8 and so should continue to work. Also add a unit test to ensure that this doesn't get broken again in the future. Closes #15204.
2013-05-15 15:05 VZ, revision 73986Fix crash in wxGTK wxPopupWindow when creating it without parent. Popup windows don't necessarily have a parent, so don't crash if parent pointer is NULL in wxPopupWindow::Create(). Closes #15173.
2013-05-15 15:05 VZ, revision 73985Allow shrinking the array with wxArray::resize(). This method did nothing if its argument was less than the current array size, as it was just a synonym for SetSize() which was documented to behave like this, but this was inconsistent with std::vector and wxVector resize() which does shrink the array, so change wxArray version to shrink it too. Closes #15195.
2013-05-14 18:58 VS, revision 73984Fix typo in a closing "#endif" comment in the test. Closes #15203.
2013-05-14 13:07 VZ, revision 73982Move wxTransform2D methods' bodies to geometry.cpp. They are all virtual and so cannot be inlined anyway and having them in the header like this confuses the g++ linker into always pulling some of the methods in merely because geometry.h was included.
2013-05-14 13:07 VZ, revision 73981Reenable some wxAny tests back.
2013-05-13 19:09 VZ, revision 73976Add more echo trace statements to runtests.bat script. Try to make the output a bit more organized.
2013-05-13 15:25 VZ, revision 73975Disable more wxAny tests again.
2013-05-13 13:05 VZ, revision 73974Try to find another wxAny test that results in heap corruption. Conversion to float is not the only problem...
Disable more tests in wxOSX/PPC build. Also added a #warning to make it more apparent what we're doing here.