Deprecated wx.iewin
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b1f29bf76f
commit
165e6ca32a
@ -26,6 +26,11 @@
|
||||
%import core.i
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
|
||||
%pythoncode {
|
||||
import warnings
|
||||
warnings.warn("This module is deprecated. Please use the wx.lib.iewin module instead.",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
}
|
||||
|
||||
MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
|
||||
|
||||
|
@ -6,6 +6,10 @@ import _iewin
|
||||
import _core
|
||||
wx = _core
|
||||
__docfilter__ = wx.__DocFilter(globals())
|
||||
import warnings
|
||||
warnings.warn("This module is deprecated. Please use the wx.lib.iewin module instead.",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
|
||||
class MSHTMLEvent(_core.NotifyEvent):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxMSHTMLEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
|
@ -29,6 +29,12 @@ parameters.
|
||||
Added wx.lib.mixins.listctrl.TextEditMixin, a mixin class that allows
|
||||
all columns of a wx.ListCtrl in report mode to be edited.
|
||||
|
||||
Deprecated the wx.iewin module.
|
||||
|
||||
Deprecated the wx.Sizer.AddWindow, AddSizer, AddSpacer methods as well
|
||||
as their Insert* and Prepend* counterparts.
|
||||
|
||||
|
||||
|
||||
|
||||
2.5.1.5
|
||||
|
Loading…
Reference in New Issue
Block a user