Added wx.FIXED_SIZE.

Added some new methods to wx.Window
Added a Destroy method to wx.TaskbarIcon to help avoid double deletes


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26647 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-04-07 19:36:47 +00:00
parent 13fc2ad819
commit 33e10b88cf
4 changed files with 32 additions and 13 deletions

View File

@@ -61,7 +61,14 @@ class wxTaskBarIcon : public wxEvtHandler
public:
wxTaskBarIcon();
~wxTaskBarIcon();
%extend {
void Destroy() {
#ifndef __WXMAC__
self->RemoveIcon();
#endif
}
}
#ifndef __WXMAC__
bool IsOk() const;