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

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2009-09-21 14:59 VZ, revision 61988

Clean up status bar sample. No real changes, just: - Fix code which couldn't compile in USE_MDI_PARENT_FRAME case - Use wxMenu::AppendCheckItem() instead of Append(..., true) - Remove unnecessary #ifdef __WXMAC__ - Wrap excessively long lines

2009-09-21 14:57 SC, revision 61987

moving themeing include to private.h

2009-09-21 10:44 VZ, revision 61986

Initialize wxMDIParentFrame::m_accelWindowMenu in default ctor. If wxMDIParentFrame object was created without its Create() ever being called, it crashed in its dtor trying to delete an uninitialized pointer, so do initialize it to NULL in all ctors (via a helper Init() method, as usual). Closes #11216.

2009-09-21 10:44 VZ, revision 61985

wxSocket::Initialize() and Shutdown() are for main thread only. Calling Initialize() from another thread could never work before but it wasn't clear that this was the case so document it in the functions comments and documentation now and add asserts checking that they are called from the main thread only. Also simplify the code as we don't actually need to do any reference-counting here and a simple boolean flag indicating whether the sockets are initialized is enough. Closes #11119.

2009-09-21 10:44 VZ, revision 61984

Fix harmless unused variable warning. The value of wxColour::Alpha() was assigned to a temporary variable which wasn't used afterwards and Mac OS g++ warned about it.

2009-09-21 08:08 JJ, revision 61983

Fix OpenVMS makefiles for inline function changes

2009-09-20 23:48 VZ, revision 61982

Fix possible deadlock in wxEvtHandler::ProcessPendingEvents(). Delete the event we just processed before re-locking the critical section as this may result in deadlocks if the (user-defined) event dtor does something non-trivial. Closes #10790.

2009-09-20 14:37 VZ, revision 61981

Put wxAny implementation entirely in the header. This allows to remove WXDLLIMPEXP_BASE from the class declaration and should hopefully fix VC6 linking errors when building the unit test.

2009-09-20 14:37 VZ, revision 61980

Add missing header to fix wxAny test compilation under OS X. And probably other Unix systems not using PCH.

2009-09-20 12:57 JS, revision 61979

Avoid duplicate character event for VK_DECIMAL on numeric keypad

2009-09-20 12:57 JS, revision 61978

Avoid duplicate character event for VK_DECIMAL on numeric keypad

2009-09-19 18:29 VZ, revision 61977

Optionally return length from wxLoadUserResource(). Add optional length output parameter and also change the return type to "char *" from "wxChar *" to which it apparently was blindly changed just to make this code compile even though this function never returned any strings. Closes #11214.

2009-09-19 18:29 VZ, revision 61976

Add wxColour::{Set,Get}RGB[A](). These methods allow to operate with all 3 or 4 colour channels at once. Add their implementation, documentation and a unit test for wxColour exercising them. Closes #9918.

2009-09-19 18:29 VZ, revision 61975

Add curly braces around wxFAIL_MSG() to avoid g++ 4.3 warning. g++ 4.3 warns about lack of explicit braces to make it happy.

2009-09-19 17:41 VZ, revision 61973

Set svn properties correctly for the newly added files. Set svn:keyword and, most importantly, svn:eol-style, to avoid having files with DOS line endings in svn, for the new files added by r61971.

2009-09-19 12:13 JMS, revision 61972

Fixed wxAny tests for VC6

2009-09-19 10:51 JMS, revision 61971

wxAny initial commit (closes #10932)

2009-09-19 00:16 VZ, revision 61968

Add wxUSE_RIBBON to wx/setup_inc.h and wx/chkconf.h. wxUSE_RIBBON was apparently added to the different wx/*/setup.h files manually instead of being added to wx/setup_inc.h and regenerating the rest, correct it. Also check that it is defined in wx/chkconf.h.

2009-09-18 19:11 VZ, revision 61967

Don't query system option in every DrawBitmap() call under MSW. Doing this had noticeable (and bad) performance implications so cache the value of the option during the first call. This doesn't allow changing its value during the program execution so we may want to provide some way to update its value later if really needed. Closes #11172.

2009-09-18 19:10 VZ, revision 61966

Change return type of wxList::Member() to bool. It used to return a pointer in wxUSE_STL==0 build and an object in wxUSE_STL==1 one making checking its return value difficult without provoking warnings from either MSVC or g++ (see #11038). Also, all the other occurrences of Member() already returned bool, including the one in wxStringList so changing it to return bool in wxList itself is more consistent.

2009-09-18 19:10 VZ, revision 61965

Convert change log to UTF-8 encoding. See #11116.

2009-09-18 18:28 VZ, revision 61964

Check that files being checked in use UTF-8. Closes #11116.

2009-09-18 18:28 VZ, revision 61963

Add the initial version of svn pre-commit hook. This version checks for absence of hard TABs in our source files.

2009-09-18 18:16 VZ, revision 61962

Fix recurring typo in "theming". It was (consistently) misspelt as "themeing" in several places. Closes #11206.

2009-09-18 18:16 VZ, revision 61961

Use UTF-8 for all non-ASCII characters in the sources. Avoid mixing Latin-1, UTF-8 and Mac Roman (?) encodings in different source files, use UTF-8 everywhere. See #11116.