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-01-02 18:10 PC, revision 57780

fix GCC warning "suggest explicit braces..."

2009-01-02 17:35 PC, revision 57779

fix header dependancy

2009-01-02 17:34 VZ, revision 57778

use guard classes automatically restoring the old state in their dtor instead of manually changing wxSocketBase::m_reading/writing/flags

2009-01-02 17:29 PC, revision 57777

fix header dependancy

2009-01-02 16:59 VZ, revision 57776

rename wxSocketSelectManager to wxSocketFDIOManager, the old name was confusing as it could be either select()- or epoll()-based

2009-01-02 01:00 VZ, revision 57725

fix WaitForXXX() to work as before: if the socket is already ready for reading/writing they should return immediately

2009-01-02 00:59 VZ, revision 57724

show the string received from client in test 2 correctly; use TestLogger just as in the client; use wxCharBuffer instead of manual new/delete

2009-01-02 00:44 VZ, revision 57723

add accelerators for the other menu commands; plug memory leak in OnTest3(); use wxCharBuffer instead of manual new/delete to avoid leaks in the future

2009-01-02 00:04 VZ, revision 57720

don't call DoWrite() if we have nothing to send (not nothing to receive)

2009-01-01 23:56 VZ, revision 57718

fix a bug in EventWorker::DoRead(): if both signature and the size of the incoming data were not received during the same read, the signature byte was lost and overwritten by size during the next read

2009-01-01 23:53 VZ, revision 57716

LogWorker() was always called with m_peer as first argument so make it a member function to avoid having to pass it all the time to it

2009-01-01 23:49 VZ, revision 57715

no changes, just reformat and avoid unnecessary uses of wxString::Format()

2009-01-01 23:25 VZ, revision 57712

also add wxSizer::IsEmpty()

2009-01-01 23:23 VZ, revision 57711

make the new GetItemCount() const

2009-01-01 22:05 RR, revision 57708

Added wxSizer::GetItemCount()

2009-01-01 22:04 RR, revision 57707

Correct wx-config's output of base libs for OSX ports (don't include the _carbon/_cocoa)

2009-01-01 17:08 VZ, revision 57705

VC6 doesn't support using keyword (closes #10322)

2009-01-01 15:18 VZ, revision 57704

update copyright year to 2009 (closes #10319)

2009-01-01 15:17 VZ, revision 57703

VC6 compilation fix after r57689 (closes #10318)

2008-12-31 23:40 VS, revision 57701

backported wxArtProvider::PushBack() to 2.8 so that one can write code compatible with both wx2.8 and wx3

2008-12-31 18:52 FM, revision 57697

replace dynamic_cast<> with wxDynamicCast

2008-12-31 17:31 FM, revision 57695

remove tabs added by error in previous commit

2008-12-31 17:17 KO, revision 57694

Fix for OS X Cocoa build.

2008-12-31 17:07 FM, revision 57693

allow the user to pass NULL for the status widths; this was a feature supported by generic and MSW status bar but was not documented; document it; add menu item in the statbar sample for testing it

2008-12-31 15:27 VZ, revision 57692

compilation fix after last change

2008-12-31 14:39 VZ, revision 57691

customize the rearrange dialog even more

2008-12-31 14:26 VZ, revision 57690

make wxRearrangeDialog more customizable and add an example of customizing it to the dialogs sample

2008-12-31 14:14 VZ, revision 57689

added SetLabelText() and EscapeMnemonics()

2008-12-31 13:27 VZ, revision 57688

added default ctor and Create() to wxRearrangeDialog for consistency

2008-12-31 13:08 FM, revision 57687

build fix for wxMSW statusbar

2008-12-31 12:28 FM, revision 57686

get rid of the wxListString class in wxStatusBar code; introduce a wxStatusBarPane class which enormously simplifies the code handling stacks/widths/styles of panes

2008-12-31 11:50 VZ, revision 57685

compilation fix for LoadFile(name, type) calls which became ambiguous after the base class LoadFile() unhiding

2008-12-30 23:56 FM, revision 57679

document wxEVT_NULL

2008-12-30 23:30 VZ, revision 57678

include errno.h for ENOMEM (closes #10309)

2008-12-30 23:19 VZ, revision 57677

extract AddColumnsItems() from ShowColumnsMenu() to make it possible to reuse it in custom menu

2008-12-30 18:22 FM, revision 57674

fix documentation for wxList and wxNode; doxygen see them as templates and the @class command confuses it; add link to C++ std::list docs

2008-12-30 18:19 FM, revision 57673

no real change; make more readable the Aliases section

2008-12-30 16:36 VZ, revision 57671

handle exceptions thrown from overridden wxView::OnCreate() gracefully

2008-12-30 15:07 VZ, revision 57670

handle loss of connection explicitly in Read/Write() to fix socket IO under Unix after the last change

2008-12-30 15:06 VZ, revision 57669

compilation fix for g++ which doesn't like using wxLogMessage in wxON_BLOCK_SCOPE_EXIT

2008-12-30 14:50 VZ, revision 57668

try reading/writing to/from the socket before blocking on it, this seems more efficient and is required to avoid blocking indefinitely under Windows

2008-12-30 14:49 VZ, revision 57667

more doc fixes, to wording and to return types ('&'s have been lost)

2008-12-30 14:36 VZ, revision 57666

try to explain socket flags better (although bad ideas don't become good even when explained correctly...)

2008-12-30 13:51 VZ, revision 57665

prettify and simplify the URL test; use a URL more likely to run a web server than localhost by default

2008-12-30 13:18 VZ, revision 57664

fix memory leak in URL test

2008-12-30 12:53 VZ, revision 57663

run wxURL test both with and without the event loop too

2008-12-30 12:53 VZ, revision 57662

added wxURL test

2008-12-30 12:52 VZ, revision 57661

fix handling of errors due to the other end of the socket being closed

2008-12-30 12:09 VZ, revision 57660

don't assert if MsgWaitForMultipleObjects() returns WAIT_OBJECT_0 but there are no messages in the queue -- this does happen

2008-12-30 12:08 VZ, revision 57659

don't assert if the socket has been closed since the async notification generation