Reverted to old method names/signatures for wx.DC, updated lib and

demo to match.  Also fixed some deprecation warnings.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-05-02 02:41:33 +00:00
parent 019fd9d379
commit d7403ad2d1
61 changed files with 536 additions and 702 deletions

View File

@@ -35,21 +35,3 @@ def wxPyTypeCast(obj, typeStr):
wxPy_isinstance = isinstance
# The wx*DC_old classes have Draw* method signatures that are mostly
# compatible with 2.4, so assign the new classes to wx*DC_new and make
# the _old classes be the defaults with the normal names.
wxDC_new = wxDC; wxDC = wxDC_old
wxMemoryDC_new = wxMemoryDC; wxMemoryDC = wxMemoryDC_old
wxBufferedDC_new = wxBufferedDC; wxBufferedDC = wxBufferedDC_old
wxBufferedPaintDC_new = wxBufferedPaintDC; wxBufferedPaintDC = wxBufferedPaintDC_old
wxScreenDC_new = wxScreenDC; wxScreenDC = wxScreenDC_old
wxClientDC_new = wxClientDC; wxClientDC = wxClientDC_old
wxPaintDC_new = wxPaintDC; wxPaintDC = wxPaintDC_old
wxWindowDC_new = wxWindowDC; wxWindowDC = wxWindowDC_old
wxMirrorDC_new = wxMirrorDC; wxMirrorDC = wxMirrorDC_old
wxPostScriptDC_new = wxPostScriptDC; wxPostScriptDC = wxPostScriptDC_old
wxMetaFileDC_new = wxMetaFileDC; wxMetaFileDC = wxMetaFileDC_old
wxPrinterDC_new = wxPrinterDC; wxPrinterDC = wxPrinterDC_old