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

2012-02-15 16:40 VZ, revision 70607

Remove non-existent wxPGChoices methods from the documentation. wxPGProperty::Add(wxArrayString, ValArrItem), GetItemAtY() and HasValue() were documented but don't actually exist, remove them. Also correct wxPGProperty::Empty() scope: it's protected and not public. Closes #13988.

2012-02-15 16:40 VZ, revision 70606

Fix typo in wxOwnerDrawnComboBox ctor documentation. "[]" was in the wrong place. Closes #13987.

2012-02-15 16:40 VZ, revision 70605

Fix typo in wxMultiChoiceDialog::GetSelections() name in the documentation. Closes #13986.

2012-02-15 16:40 VZ, revision 70604

Mark Mac-specific wxMenuBar methods with @onlyfor{wxosx}. Closes #13985.

2012-02-15 16:39 VZ, revision 70603

Document the default size of new wxMemoryBuffer correctly. Documenting it as DefBufSize wasn't really helpful, so just use its value instead (an alternative would be to document DefBufSize -- with its value -- but it doesn't seem very useful to make it part of the public API). Closes #13984.

2012-02-15 16:39 VZ, revision 70602

Fix wxMediaCtrl::GetPlaybackRate() method name in the documentation. Closes #13983.

2012-02-15 16:39 VZ, revision 70601

Document wxConvFileName variable, not wxMBConvFile class. The class doesn't exist (and the documentation even says that much) but the global variable does exist, so document it instead. Closes #13982.

2012-02-15 16:39 VZ, revision 70600

Added wxFileName::Exists(). This function checks for existence of anything with the given name, not necessarily just a file or a directory. Extend the unit test to verify that it returns true for /dev/null on Unix systems. Closes #953.

2012-02-15 16:39 VZ, revision 70599

Refactor wxFileName existence checking code. Merge FileExists() and DirExists() together in a single wxFileSystemObjectExists() helper in preparation for adding a function checking for the existence of any kind of file system object. There should be no changes for MSW/Unix but OS/2 file detection was changed slightly to always use DosQueryPathInfo() instead of using it only for the directories and stat() for files. Not sure if this is the right thing to do there but it seems like the code should work. Also add a simple unit test for these functions. See #953.

2012-02-15 16:39 VZ, revision 70598

Explicitly document that hidden windows get wxEVT_IDLE events. This wasn't always the case and could be unexpected so document this behaviour clearly, also explain the rationale for it.

2012-02-15 08:04 PC, revision 70597

avoid sending mouse events to the wrong window, fixes #2917

2012-02-15 01:36 VZ, revision 70594

Document wxLogGui::DoShow{Single,Multiple}LogMessage() as private. These methods should be documented because they can be overridden but they're private so document them as such. Closes #13981.

2012-02-15 01:35 VZ, revision 70593

Don't document wxListCtrl::SetColumnsOrder() as being const. Because it isn't. Closes #13980.

2012-02-15 01:35 VZ, revision 70592

Clean up wxListBox documentation. Remove the methods inherited from the base class, there is no need to re-document them here, especially as this was done incorrectly for Set(). Do document EnsureVisible() and IsSorted(). Closes #13979.

2012-02-15 01:35 VZ, revision 70591

Make documentation of wxIcon::ConvertToDisabled() more explicit. Use @onlyfor{wxmsw} and explain how can the same task be done under the other platforms. Closes #13977.

2012-02-15 01:35 VZ, revision 70590

Document wxFTP::TransferMode enum in the correct scope. It's declared inside wxFTP class and not in global scope. Closes #13976.

2012-02-15 01:35 VZ, revision 70589

Document wxGB{Position,Size}::operator!=(), remove operator!(). The latter doesn't exist (any more?), the former does. Closes #13975.

2012-02-15 01:35 VZ, revision 70588

Remove documentation of non-existent wxFontMapper::SetConfig(). Closes #13974.

2012-02-15 01:35 VZ, revision 70587

Document Mac-only wxFileName methods as being Mac-only. Use @onlyfor for them for consistency and to help the automated code generators. Closes #13971.

2012-02-15 01:35 VZ, revision 70586

Document wxFileType::MessageParameters class. Documentation is not really very helpful but better than nothing. Closes #13972.

2012-02-15 01:35 VZ, revision 70585

Fix wrong type of wild card parameter in wxFileCtrl documentation. It is a string, not a point. Closes #13970.

2012-02-15 01:35 VZ, revision 70584

Make wxDragImage ctors taking hot spot point really deprecated in wxMSW. They were documented as deprecated and deprecated in the generic version (and actually not even available there any more without WXWIN_COMPATIBILITY_2_6) but not in wxMSW, where we just had the weird wxLogDebug() statements that were inconsistent with our handling of deprecation everywhere else. Do deprecate them now, remove wxLogDebug() and also remove the deprecated ctors and Create() overloads from the documentation. Finally, remove the documentation of deprecated and available in the generic version only ctor taking only wxCursor (closes #13967).

2012-02-15 01:35 VZ, revision 70583

Document wxDocManager::CreatePreviewFrame() as being protected, not public. Simply move the function documentation to the correct class section. Closes #13966.

2012-02-15 01:35 VZ, revision 70582

Don't document private event handlers in doc/view frame classes. wxDoc[MDI]ParentFrame::OnCloseWindow(), wxDoc[MDI]ChildFrame::OnActivate() and OnCloseWindow() are all private, don't document them as public. Just mention that the wxEVT_CLOSE_WINDOW and wxEVT_ACTIVATE should be left for the processing in the frame classes to let the default handling take place. Closes #13965.

2012-02-15 00:14 VZ, revision 70581

Mention __WIN64__ in the preprocessor defines documentation.