]> git.saurik.com Git - wxWidgets.git/commitdiff
BeginDrawing/EndDrawing are deprecated, and never really did anything
authorRobin Dunn <robin@alldunn.com>
Sun, 5 Feb 2006 22:01:48 +0000 (22:01 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 5 Feb 2006 22:01:48 +0000 (22:01 +0000)
to begin with.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_dc.i

index a220816d4bb90beed8dbf2914dbe0da8c225bb98..218eda978dbc8bcd46be9681758ac04f2f114a47 100644 (file)
@@ -59,22 +59,15 @@ public:
     ~wxDC();
 
 
-    DocDeclStr(
-        virtual void , BeginDrawing(),
-        "Allows for optimization of drawing code on platforms that need it.  On
-other platforms this is just an empty function and is harmless.  To
-take advantage of this postential optimization simply enclose each
-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.", "");
+    %pythoncode {
+        %# These have been deprecated in wxWidgets.  Since they never
+        %# really did anything to begin with, just make them be NOPs.
+        def BeginDrawing(self):  pass
+        def EndDrawing(self):  pass
+    }
     
 
-
+    
 // TODO    virtual void DrawObject(wxDrawObject* drawobject);