From 20324e7a696b5034b80ae0b404ee6f123397db9d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 20 Sep 2011 16:20:36 +0000 Subject: [PATCH] reword it a bit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/MigrationGuide.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/MigrationGuide.txt b/docs/MigrationGuide.txt index 199d52c6..5cb24e33 100644 --- a/docs/MigrationGuide.txt +++ b/docs/MigrationGuide.txt @@ -23,17 +23,17 @@ should then be able to work out the details for themselves. Overloaded Functions -------------------- -Up to this point in order to support more than one of the versions of -an overloaded C++ function or class method we have had to rename all -but one of them. For example, for the wxWindow::SetSize method we -have SetSize, SetDimensions, SetRect and SetSizeWH. One of the -features of the new tools used for Project Pheonix is that we no -longer need to do that and instead we can have just one function or -method in the Python API and the propper version of the C++ function -or method is chosen at runtime based on the types of parameters passed -to the function. So in most cases the renamed versions of the -overloaded functions have been removed and you can call the function -with the same name as the C++ API. +In order to support more than one of the versions of an overloaded C++ +function or class method in Classic wxPython, we had to rename all but +one of them. For example, for the wxWindow::SetSize method we have +SetSize, SetDimensions, SetRect and SetSizeWH. One of the features of +the new tools used for Project Pheonix is that we no longer need to do +that and instead we can have just one function or method in the Python +API and the propper version of the C++ function or method is chosen at +runtime based on the types of parameters passed to the function. So +in most cases the renamed versions of the overloaded functions have +been removed and you can call the function with the same name as the +C++ API. This also includes the default constructor for all widget classes, used for the 2-phase create. Previously they were renamed to to be the