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-29 19:29 PC, revision 70756

remove unnecessary gtk_widget_show(m_widget) calls, PostCreation() takes care of that

2012-02-29 19:13 PC, revision 70755

small includes cleanup

2012-02-29 19:05 PC, revision 70754

remove unnecessary gtk_widget_show() calls, PostCreation() takes care of that

2012-02-29 16:06 JS, revision 70753

Always send wxEVT_COMMAND_RICHTEXT_DELETE event if delete or back key pressed

2012-02-29 15:45 VZ, revision 70752

Ignore setting empty path in wxGTK wxFileDialog. wxGenericFileButton calls wxFileDialog::SetPath() with empty path if no initial path is explicitly specified and this clearly shouldn't do anything -- but it did, as it set the file dialog path to the initial directory (cwd by default), and so opened it in the parent of that directory which was completely unexpected and not useful at all. Simply don't do anything when SetPath("") is called.

2012-02-29 14:59 VZ, revision 70751

Remove redundant assignment in wxDialUpManagerMSW code. No real changes, just remove a redundant assignment flagged by a static code analysis tool.

2012-02-29 14:58 VZ, revision 70750

Replace incorrect uses of wxString::empty() with the intended clear(). empty() doesn't empty the string but just checks for its emptiness, clear() was supposed to be used here instead. Thanks to PVS-Studio for finding these problems.

2012-02-29 14:58 VZ, revision 70749

Initialize m_isShown correctly in wxGenericDragImage::BeginDrag(). The code initialized m_isDirty twice which was clearly wrong. The original intention was probably to set both m_isDirty and m_isShown to false. Thanks to PVS-Studio for finding this bug.

2012-02-29 14:58 VZ, revision 70748

Move checks for m_art != NULL before code using m_art in wxAuiToolBar. It doesn't make sense to check whether a pointer is NULL after using it, so do the checks first. In fact the m_art pointer probably can never be NULL at all as other code uses it without checking and so these checks could probably be removed completely, but keep them for now as I'm not totally sure if having NULL art provider is really impossible.

2012-02-28 23:48 VZ, revision 70744

Use /bin/echo for creation of Mac OS X PkgInfo files. The built-in of /bin/sh doesn't handle "-n" option that we use (at least not under OS X 10.6), so we were getting "-n APPL????" in the generated files. Fix this by using /bin/echo which does support this option.

2012-02-28 19:23 PC, revision 70741

avoid deprecated gdk_net_wm_supports()

2012-02-28 19:06 PC, revision 70740

remove run-time check for now-required GTK 2.4

2012-02-28 18:25 PC, revision 70739

remove unnecessary override of AddChildGTK

2012-02-28 18:06 PC, revision 70738

fix virtual override broken in r58875

2012-02-28 17:30 SC, revision 70737

removing Quickdraw call

2012-02-28 15:41 VZ, revision 70736

Fix unused parameter warning in wxOSX build. No real changes.

2012-02-28 15:39 SC, revision 70735

making sure TextMatrix is always identity, there were strange artifacts sometimes, maybe due to interference with cocoa text system, adding debug method CheckInvariants

2012-02-28 06:29 PC, revision 70734

Remove code to query GDK window origin from DoGetPosition(), it should not be necessary, and was probably wrong anyway. This allows removing unnecessary assertions on m_widget (see #14052). Also, avoid setting initial position to (-1,-1)

2012-02-28 05:40 PC, revision 70733

avoid crash if IsMaximized() is called before native widget is created, fixes #14052

2012-02-28 03:05 VZ, revision 70732

Fix setting default file name in wxGenericFileDirButton in wxGTK. Set the default directory first, if it's specified, and the file name later to ensure that it's interpreted relatively to this directory. Otherwise we could have a mismatch between the directory shown in the dialog and its initial path.

2012-02-28 03:04 VZ, revision 70731

Interpret default file name relatively to initial dir in wxGTK wxFileDialog. Use the initial dialog directory to build the absolute path required by GTK+ in wxFileDialog instead of the current working directory. This makes more sense and makes specifying the default directory and (just) the default file name work correctly and avoids GTK+ warnings like Gtk-CRITICAL **: gtk_file_folder_unix_get_info: assertion `strcmp (dirname, folder_unix->filename) == 0' failed (and in some older versions of GTK+ -- 2.10? -- this even results in a crash).

2012-02-28 00:51 RD, revision 70722

Add a bit of docs for the FS Handlers

2012-02-28 00:50 RD, revision 70721

Phoenix needs to see the implementation of pure virtuals so it knows that this class is not abstract.

2012-02-28 00:50 RD, revision 70720

Add missing RemoveHandler

2012-02-28 00:50 RD, revision 70719

Add interface declarations for stock file system handlers.