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-07-10 03:33 PJC, revision 61368

Added mouse hover effects to ribbon panels. Implemented some of the logic for minimising ribbon panels (though artwork for it not implemented). Improved panel collapsing on ribbon pages by always collapsing panels in reverse order to that in which they were expanded. Changed wxRibbonControl::GetNextLarger/SmallerSize interface to take a size as an argument rather than operating on the current size.

2009-07-10 00:00 VZ, revision 61367

don't mark GetTraceMask() deprecated as we use it in the same header which provokes warnings when including it from outside wx

2009-07-09 23:41 VZ, revision 61366

remove scope-resolution operator from wxLogError() call: this doesn't work any more as it's a macro and not a function now; mention this in the docs

2009-07-09 23:39 VZ, revision 61365

fix MSVC compilation: as string literals are of non-const char* type with this compiler, they are implicitly convertible to void* resulting in overloading ambiguities with wxLogger::Log()

2009-07-09 22:30 VZ, revision 61364

implement wxLogTrace(wxTraceMask, format, ...) overload too

2009-07-09 22:26 VZ, revision 61363

Add information about the log message generation location to wxLog. This means that wxLog::DoLogRecord() can now retrieve the file name, line number and the function where the message was logged. An unfortunate consequence of this change is that now if ( condition ) wxLogError("Whatever"); results in a warning from g++ 4.x with -Wparentehses, so extra parentheses had to be added in many places. Finally, also allow storing arbitrary attributes in wxLogRecordInfo. This had to be added to implement our own overloaded wxLogStatus() and wxLogSysError() and will probably be useful for the others as well.

2009-07-09 22:18 BBE, revision 61362

Updated documentation of file system watcher: added to the file category, added sample. A couple of stylistical corrections.

2009-07-09 20:26 RR, revision 61361

Reduce size of virtual list before sending out delete notification, fixes #10966: wxDataViewVirtualListModel row deletion bug

2009-07-09 19:23 BBE, revision 61360

First version of file system watcher documentation

2009-07-09 18:21 SC, revision 61359

backport of r61356

2009-07-09 17:19 VZ, revision 61358

disable VC6 warnings before warning(push), otherwise they're reenabled by warning(pop) in wx/afterstd.h

2009-07-09 17:13 VZ, revision 61357

fix VC6 warnings about not enough parameters for wxDEPRECATED_BUT_USED_INTERNALLY_INLINE

2009-07-09 16:47 SC, revision 61356

adding special case for Carbon DataBrowser Checkbox

2009-07-09 15:11 VZ, revision 61355

make bitmap button background more visible

2009-07-09 14:50 VZ, revision 61354

remove out of date bugs; mention VC8 and wxUSE_NO_MANIFEST

2009-07-09 14:22 VZ, revision 61353

disable MSVC deprecation warnings as we intentionally test deprecated methods in this test

2009-07-09 14:00 VZ, revision 61352

compilation fix for !WXWIN_COMPATIBILITY_2_8 build

2009-07-08 21:49 BBE, revision 61351

Null pointer represented by NULL not 0 Naming change: GetWD(),SetWD() => Get[Set]WatchDescriptor() Corrected name: GetWathedPathsCount()

2009-07-08 21:20 BBE, revision 61350

Added methods: GetWatchedPaths(), GetWatchedPathsCount() Refactoring of wxInotifyFileSystemWatcher: moved some common code to separate methods Ignoring events generated by inotify when removing watched path Fixed sample to delete watcher on stop and recreate it on start instead of calling API which didn't get into svn

2009-07-08 18:06 VZ, revision 61349

update IfaceCheckLog definition after wxLog::DoLogXXX() changes

2009-07-08 16:16 VZ, revision 61348

added wxLog::IsLevelEnabled() helper; document it and a few related functions which were not, or poorly, documented

2009-07-08 15:53 VZ, revision 61347

update LboxLogger definition after the previous revision changes

2009-07-08 15:47 VZ, revision 61346

Changed wxLog DoLogXXX() callbacks and introduced wxLogRecordInfo. The main logging callback is now DoLogRecord() with DoLogTextAtLevel() and DoLogText() provided for convenience. The old DoLog() and DoLogString() are still called but deprecated and their overloads taking wxString which were only added in 2.9.0 are removed. wxLogRecordInfo allows associating more information than just the time stamp with the log record; for now only the logging thread id was added but more fields will make their appearance soon.

2009-07-07 23:03 PJC, revision 61345

Implemented more of wxRibbonButtonBar. Added another button bar to the ribbon sample. Updated interface headers with button bar related stuff and other recent changes. Fix ribbon pages creating visible scroll buttons when invisible.

2009-07-07 17:23 JMS, revision 61344

Further fixes to colour properties that use wxPG_COLOUR_ALLOW_CUSTOM attribute