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):

2008-11-23 21:33 CE, revision 56946

add missing cocoa dir

2008-11-23 19:46 FM, revision 56945

many document corrections by charles; partial commit of patch #10087

2008-11-23 19:30 FM, revision 56944

document that dragging in wxTreeCtrl needs to be explicitely allowed (fixes #3915)

2008-11-23 18:10 FM, revision 56943

the layout file for use with doxygen >= 1.5.7.0

2008-11-23 17:45 FM, revision 56942

readd grouping previously removed by error

2008-11-23 13:39 VZ, revision 56940

use struct timeval and not a long to store socket timeout under Unix too

2008-11-23 13:32 VZ, revision 56939

remove last traces of __GSOCKET_STANDALONE__

2008-11-23 13:30 VZ, revision 56938

move more socket functions common to Winsock and BSD implementations to common code

2008-11-23 13:21 VZ, revision 56937

don't duplicate SetInitialSocketBuffers()

2008-11-23 13:18 VZ, revision 56936

remove unused any more wx_socket_callback()

2008-11-23 13:17 VZ, revision 56935

fix wxSocket notifications under MSW after the last change

2008-11-23 13:12 VZ, revision 56934

continuation of GSocket/wxSocket merge: always create GSocket associated to a wxSocket instead of (always) doing it using a separate call later; remove support for user callbacks which wasn't implemented in Windows version and deprecated since 10 years or so

2008-11-23 13:11 VZ, revision 56933

added wxSocketBase::GetTimeout() to match existing SetTimeout()

2008-11-23 12:33 VZ, revision 56932

don't assume that __thread is available just because we use g++ 4, it doesn't support it under all platforms, notably not under OS X

2008-11-23 12:18 VZ, revision 56931

use int instead of SOCKET to avoid including winsock.h from wx/gsocket.h

2008-11-23 11:30 JMS, revision 56930

Render cell background in renderer only if rendering on propgrid canvas

2008-11-23 11:00 JMS, revision 56929

Eliminate need to call Connect() in wxPGEditor::CreateControls()

2008-11-23 01:53 VZ, revision 56928

don't use __thread keyword with g++ < 4 as it results in mysterious problems at link time related to thread-local static wxString::ms_cache

2008-11-23 01:52 VZ, revision 56927

compilation fixes for Unix after moving wxFD_XXX macros from wx/unix/private.h

2008-11-23 01:44 VZ, revision 56926

don't duplicate GSocket creation/destruction and shutdown code in BSD and Winsock implementations

2008-11-23 01:27 BP, revision 56925

Finished review of the first 1,000 lines of grid.h interface header.

2008-11-23 01:15 VZ, revision 56924

fix timeout value for wxDatagramSocket: was off by a factor of 1000

2008-11-23 00:11 VZ, revision 56923

do not require a running event loop, even under MSW, for the sockets to work: if the user code doesn't use events there is no reason for it to run the event loop, especially as it's not needed under the other platforms; instead use the same Select() implementation as under Unix under MSW too and, to avoid duplicating it, put it into the new GSocketBase class

2008-11-23 00:09 VZ, revision 56922

fix (harmless) VC7 warnings about auto_ptr assignment

2008-11-23 00:09 FM, revision 56921

documented ExitCode typedef; revised wxThread and wxThreadHelper docs, also adding two usage examples; remove useless comment added by error in previous commits; linked threading overview from wxThread