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-26 16:13 FM, revision 56981

added note about GetTimestamp() (fixes #1986)

2008-11-26 15:54 FM, revision 56980

documented the wxDCBrushChanger, wxDCPenChanger, wxDCTextColourChanger; introduced a wxDCFontChanger

2008-11-26 15:31 JMS, revision 56979

include wx/msw/private.h to fix PCH-less compilation

2008-11-26 12:40 VZ, revision 56978
  • D /wxWidgets/trunk/src/osx/carbon/cfsocket.cpp

remove apparently unused file (src/osx/core/gsocket.cpp seems to have replaced it)

2008-11-26 12:35 VZ, revision 56977

remove unused callback and data variables

2008-11-26 12:21 VZ, revision 56976

move wx/gsocket.h to wx/private/gsocket.h

2008-11-26 12:07 VZ, revision 56975

don't include (private) wx/gsocket.h from public header, forward declaring GAddress is enough

2008-11-26 11:50 VZ, revision 56974

include wx/msw/private.h to fix PCH-less compilation

2008-11-25 20:09 BP, revision 56972

Fixed doxygen warnings regarding the XRC File Format overview using <> tags in section titles.

2008-11-25 17:26 FM, revision 56970

commit remaining portions of #10087

2008-11-25 17:14 JMS, revision 56969

To avoid error message, do not even try to set focus on MSW popup window that doesn't have WS_POPUP style (backported fix for #10157)

2008-11-25 17:04 JMS, revision 56968

To avoid error message, do not even try to set focus on MSW popup window that doesn't have WS_POPUP style (closes #10157)

2008-11-25 13:57 VZ, revision 56966

compilation fix for OS X (missing unistd.h)

2008-11-25 13:57 VZ, revision 56965

temporary fix the linking problem due to making GSocket::Detected_Read/Write() non-virtual

2008-11-25 13:33 VZ, revision 56964

trying to resolve GSocketManager API mess: the meaning of Install/Uninstall_Callback() and Enable/Disable_Events() has diverged in different ports and didn't make any sense any more; merge them in a single function (with still differing semantics though); also added Close_Socket()

2008-11-25 07:16 JJ, revision 56963

Update configuration for OpenVMS

2008-11-25 00:28 FM, revision 56960

fix the examples for wxThread and wxThreadHelper after field-testing on wxMSW and wxGTK; add a note to wxThread::Run about detached threads; fix the note for wxThread::Delete wrt joinable threads

2008-11-25 00:24 FM, revision 56959

add more references to the delayed deletion of wxTopLevelWindows

2008-11-24 16:42 JMS, revision 56958

DatePickerCtrl editor could crash if property had unspecified or otherwise incompatible value

2008-11-24 09:36 VZ, revision 56955

include the right header for timeval

2008-11-24 09:31 VZ, revision 56954

remove extraneous class scope qualifier

2008-11-24 07:07 BP, revision 56953

Reviewed, and re-organized members of wxGrid, which now makes the interface header manual reviews finally finished.

2008-11-24 02:23 BP, revision 56952

Reviewed the rest of grid.h except for the wxGrid class itself, and re-ordered the definitions to fit the real header.

2008-11-24 00:01 FM, revision 56949

provide an example implementation of wxCloseEvent handler

2008-11-23 23:53 FM, revision 56948

add an event table for wxFrame and wxDialog: they send wxCloseEvents...

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

2008-11-22 23:16 BP, revision 56920

Documented some DrawText() parameters missed in the last commit.

2008-11-22 23:03 BP, revision 56919

Reviewed and cleaned up the rest of the graphics.h interface header.

2008-11-22 23:00 FM, revision 56918

fix minor typos

2008-11-22 22:50 FM, revision 56917

added group 'grid' (fixes #10217)

2008-11-22 22:40 VZ, revision 56916

document all overloads of DrawText()

2008-11-22 22:40 VZ, revision 56915

fix compilation after r56753 (closes #10218)

2008-11-22 20:03 FM, revision 56914

modernize the documented systems to declare new events

2008-11-22 16:41 JMS, revision 56913

Updated event type declarations to follow what other sub-libraries do these days (ie. DECLARE_EXPORTED_EVENT_TYPE is no longer used)

2008-11-22 15:59 FM, revision 56912

render the content of @c tags in a slightly more visible way; currently using DejavuSans as font in Firefox (i.e. the default font) the differences between @c-styled text and normal text are almost unnoticeable

2008-11-22 15:56 FM, revision 56911

give a name to the enum to make it easier to reference it in docs; wxFSVolume shouldn't be considered incomplete anymore

2008-11-22 15:54 FM, revision 56910

give a name to the enum to make it easier to reference it in docs

2008-11-22 15:53 FM, revision 56909

clarify role of wxToolBarToolBase (fixes #9874)

2008-11-22 15:36 FM, revision 56908

fix for doxygen warnings

2008-11-22 15:29 FM, revision 56907

document wxFSVolume (fixes #3977)

2008-11-22 14:36 FM, revision 56906

fix wxList<T>::resize description (fixes #10207)

2008-11-22 14:34 VZ, revision 56905

use TCP for this benchmark under Windows too (and not DDE)

2008-11-22 14:33 VZ, revision 56904

no need to disable DoTestSwap() for VC6 any more with latest wx/cppunit.h

2008-11-22 14:29 FM, revision 56903

document mac.textcontrol-use-spell-checker (fixes #10165)

2008-11-22 14:20 FM, revision 56902

fixes #10131

2008-11-22 14:18 FM, revision 56901

be more precise about range in indeterminate-mode wxGauges (fixes #10125)

2008-11-22 14:00 FM, revision 56900

documented wxTaskBarIconEvent (fixes #10021)

2008-11-22 13:56 FM, revision 56899

minor fixes

2008-11-22 13:42 FM, revision 56898

clarify wxListCtrl::GetItem (fixes #9640)

2008-11-22 13:12 FM, revision 56897

clarify how top-level windows are used by wxApp (fixes #9448)

2008-11-22 12:44 FM, revision 56896

fix docs for wxInputStream::GetC(); fixes #4461

2008-11-22 12:39 FM, revision 56895

fix docs for wxRect::Intersect overloads (fixes #4445)

2008-11-22 12:29 FM, revision 56894

fix docs for wxWindow::Layout (fixes #4297)

2008-11-22 12:17 FM, revision 56893

fix description for wxWS_EX_CONTEXTHELP; fixes #4276

2008-11-22 12:10 FM, revision 56892

add event table for wxAuiNotebook (partially fixes #4175)

2008-11-22 11:56 FM, revision 56891

minor fixes

2008-11-22 10:52 FM, revision 56890

wxCursor derives (on almost all ports) from wxGDIObject (closes #3711)

2008-11-22 10:41 FM, revision 56889

few other fixes for wxChar => wxString

2008-11-22 10:32 FM, revision 56888

add description for GetFrameParameters() function; some other minor fixes (closes ticket #10146)

2008-11-22 04:40 KO, revision 56887

wxGraphicsBitmap implementation for Cairo.

2008-11-22 04:10 KO, revision 56886

Forward port event handler fixes to trunk.

2008-11-22 00:21 FM, revision 56885

minor fixes; replace references to Windows95 with references to wxMSW where possible

2008-11-21 16:18 VZ, revision 56884

no changes, just reformat, remove extraneous semicolons and inline keywords

2008-11-21 16:17 VZ, revision 56883

fix virtual function hiding for LoadFile(); replace a few more longs with wxBitmapTypes

2008-11-21 16:16 VZ, revision 56882

fix tags generation for OS X port after renaming

2008-11-21 04:46 KO, revision 56880

Backport MSW wxGraphicsBitmap fixes from trunk.

2008-11-20 23:28 VZ, revision 56876

use ShellExecuteEx() instead of ShellExecute() which doesn't exist under WinCE (closes #10201)

2008-11-20 23:27 VZ, revision 56875

fix file dialog caption

2008-11-20 23:21 VZ, revision 56874

define wxUSE_REGKEY for WinCE too (closes #10211)

2008-11-20 23:19 VZ, revision 56872

use GetWindow() instead of GetNextWindow() to fix CE compilation (closes #10210)

2008-11-20 23:15 FM, revision 56871

use @onlyfor tag

2008-11-20 21:27 FM, revision 56870

mention wxArtProvider

2008-11-20 18:30 VZ, revision 56869

don't test sei.hInstApp in DoLaunchDefaultBrowser(), just look at ShellExecuteEx() return value (#10190)

2008-11-20 18:19 VZ, revision 56868

fix substr() calls broken by r56215 (#10198)

2008-11-20 18:12 VZ, revision 56867

don't log an error if the directory can't be opened at all for compatibility with MSW (#10194)

2008-11-20 17:59 VZ, revision 56866

add missing Detach() after r56863 changes (thanks troelsk)