Re: [Fxruby-users] gdb and FXRuby
Status: Inactive
Brought to you by:
lyle
|
From: Lyle J. <ly...@kn...> - 2003-08-11 03:13:13
|
Joel VanderWerf wrote:
> There's no cost in calling create twice on an icon or other widget is
> there?
No, not really. I think that all of the create() functions are
structured like:
if (!xid) {
... create resource ...
xid = ... handle to created resource...
}
and so you're just "paying" for the if check.
|