reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27571 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-06-01 21:57:03 +00:00
parent 96aecfc900
commit e3b71cb883
16 changed files with 659 additions and 334 deletions

View File

@@ -3,7 +3,7 @@
"""
The Object Graphics Library provides for simple drawing and manipulation
of 2D objects.
of 2D objects. (This version is deprecated, please use wx.lib.ogl instead.)
"""
import _ogl
@@ -12,6 +12,10 @@ import _windows
import _core
wx = _core
__docfilter__ = wx.__DocFilter(globals())
import warnings
warnings.warn("This module is deprecated. Please use the wx.lib.ogl package instead.",
DeprecationWarning, stacklevel=2)
#---------------------------------------------------------------------------
class ShapeRegion(_core.Object):