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-08-17 01:14 VZ, revision 61677

Don't forget to reset wxSocketImplMac members to NULL. This avoids an assert in dtor.

2009-08-17 01:13 VZ, revision 61676

Use CF socket manager in GUI OS X applications. wxSocketManagerMac was never created under OS X since wxSocket code refactoring as wxGUIAppTraits::GetSocketManager() wasn't overridden. Doing this required an extra nasty hack with a global variable in the base library which is used just to pass the socket manager pointer from the net library to the core one without creating a dependency between them but this seems unfortunately unavoidable. See #11030.

2009-08-17 01:13 VZ, revision 61675

Virtualize wxSocketImpl creation by routing it via wxSocketManager. This is necessary to create different kinds of sockets for the console and GUI applications under OS X: unlike Unix which use different socket managers for the console and GUI programs but still use the same data structures in both cases as X11 and derived toolkits APIs are very similar, Core Foundation sockets don't have anything in common with their console counterparts and so we need to use different wxSocketImpl versions too. A side effect of this commit is that now we need to force linking of src/msw/sockmsw.cpp when using sockets: this wasn't necessary before because it contained wxSocketImpl method definition but now that there are no more direct dependencies on it, MSVC linker simply discards the object file unless we force it to link with it. Notice that this commit doesn't change anything yet, it simply refactors the code to use wxSocketManager::CreateSocket() instead of wxSocketImpl::Create() in preparation for the next change.

2009-08-17 01:13 VZ, revision 61674

Create both the full and OS X specific tag files in makeosxtags.sh. Also don't duplicate the files already processed by the generic create_tags in OS X-specific part.

2009-08-16 17:17 JMS, revision 61673

Fixed bug: wxPGProperty::SetName() crashed if it was called before property was added to grid (fixes #11111)

2009-08-16 15:32 VZ, revision 61672

Add samples files missing from distribution. Mostly XPM icons but also a header from dataview sample.

2009-08-15 19:41 BBE, revision 61670

Fixed build error on MSW: missing virtual method implementation

2009-08-15 17:35 BBE, revision 61669

Fixed corrupted source files.

2009-08-15 07:30 JMS, revision 61668

Added workaround for VC6 internal compiler error (fixes #11104)

2009-08-14 21:09 MW, revision 61667
  • D /wxWidgets/trunk/build/buildbot/config/buildbot.css

Remove buildbot.css as it's never been used.

2009-08-14 20:57 MW, revision 61666
  • D /wxWidgets/trunk/build/buildbot/config/include/testdrive-unix.xml
  • D /wxWidgets/trunk/build/buildbot/config/include/testdrive-win.xml
  • D /wxWidgets/trunk/build/buildbot/config/include/testdrive.xml
  • D /wxWidgets/trunk/build/buildbot/config/testdrive-unix.xml
  • D /wxWidgets/trunk/build/buildbot/config/testdrive-win.xml

Remove testdrive bots.

2009-08-14 20:55 MW, revision 61665

Add new unix bots.

2009-08-14 20:45 MW, revision 61664

Rename ravnsgaard.xml to unix.xml

2009-08-14 02:06 VZ, revision 61663

Allow customizing wxDebugReportCompress output file. It may be useful to change the directory where it is generated to allow the users to find it more quickly. Also allow changing the crash report base name for completeness.

2009-08-14 02:05 VZ, revision 61662

Added wxStandardPaths::MSWGetShellDir(). This function allows to get the location of Windows shell special folders not covered by wxStandardPaths methods (yet), e.g. CSIDL_DESKTOPDIRECTORY.

2009-08-13 19:32 VZ, revision 61661

Corrected fix for #11014 in r61506.

2009-08-13 14:32 VZ, revision 61660
  • D /wxWidgets/branches/SOC2009_FSWATCHER/samples/fswatcher/fswatcher_vc7.sln
  • D /wxWidgets/branches/SOC2009_FSWATCHER/samples/fswatcher/fswatcher_vc8.sln
  • D /wxWidgets/branches/SOC2009_FSWATCHER/samples/fswatcher/fswatcher_vc9.sln

Remove fswatcher sample solution files from svn. The solution files are not stored in the svn with a few exceptions and there is no reason to store them for this sample.

2009-08-13 14:31 VZ, revision 61659

Check that wxUSE_FSWATCHER is defined. All user-ssettable wxUSE_XXX symbols must be checked in this file and wxUSE_FSWATCHER is no exception.

2009-08-13 14:07 VZ, revision 61658

Indicate that wxFileSystemWatcher is new since 2.9.1.

2009-08-13 11:58 VZ, revision 61657

Minor updates to Vietnamese translations. Patch from Trần Ngọc Quân.

2009-08-13 11:50 VZ, revision 61656

Set correct EOL style for .po files which didn't have it.

2009-08-13 00:42 BBE, revision 61655

Fixed bug in wxConsoleEventLoop: it didn't unregister its wakeup pipe fd on delete, which resulted in blocking the place in the map for the next entry with the same fd

2009-08-13 00:39 BBE, revision 61654

Commented out one test, because it cannot pass at the moment

2009-08-12 23:31 PJC, revision 61653

Fixed wxRibbonMSWArtProvider scroll right button having wrong arrow.

2009-08-12 21:50 BBE, revision 61652

include <wx/*> => include wx/*. wxFSWatchEntry::GetLastState now returns by const reference. A couple of minor changes.