diff options
Diffstat (limited to 'lib/wx/src/gen/wxGraphicsObject.erl')
-rw-r--r-- | lib/wx/src/gen/wxGraphicsObject.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/wx/src/gen/wxGraphicsObject.erl b/lib/wx/src/gen/wxGraphicsObject.erl index e2e082ff91..b8b4be1dea 100644 --- a/lib/wx/src/gen/wxGraphicsObject.erl +++ b/lib/wx/src/gen/wxGraphicsObject.erl @@ -24,7 +24,7 @@ -module(wxGraphicsObject). -include("wxe.hrl"). --export([getRenderer/1,isNull/1]). +-export([destroy/1,getRenderer/1,isNull/1]). %% inherited exports -export([parent_class/1]). @@ -50,3 +50,9 @@ isNull(#wx_ref{type=ThisT,ref=ThisRef}) -> wxe_util:call(?wxGraphicsObject_IsNull, <<ThisRef:32/?UI>>). +%% @doc Destroys this object, do not use object again +-spec destroy(This::wxGraphicsObject) -> ok. +destroy(Obj=#wx_ref{type=Type}) -> + ?CLASS(Type,wxGraphicsObject), + wxe_util:destroy(?DESTROY_OBJECT,Obj), + ok. |