BeginDrawing/EndDrawing are deprecated, and never really did anything

to begin with.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-05 22:01:48 +00:00
parent 1d9bb35f77
commit 22b549f247

View File

@@ -59,22 +59,15 @@ public:
~wxDC(); ~wxDC();
DocDeclStr( %pythoncode {
virtual void , BeginDrawing(), %# These have been deprecated in wxWidgets. Since they never
"Allows for optimization of drawing code on platforms that need it. On %# really did anything to begin with, just make them be NOPs.
other platforms this is just an empty function and is harmless. To def BeginDrawing(self): pass
take advantage of this postential optimization simply enclose each def EndDrawing(self): pass
group of calls to the drawing primitives within calls to }
`BeginDrawing` and `EndDrawing`.", "");
DocDeclStr(
virtual void , EndDrawing(),
"Ends the group of drawing primitives started with `BeginDrawing`, and
invokes whatever optimization is available for this DC type on the
current platform.", "");
// TODO virtual void DrawObject(wxDrawObject* drawobject); // TODO virtual void DrawObject(wxDrawObject* drawobject);