Re: [Fxruby-users] Why does it return FXRbTextField when I call 'getClassName()' on an FXTextField?
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <jl...@cf...> - 2004-01-08 16:10:56
|
Rich wrote: > puts FXTextField.new(mainwin,20).getClassName() It's returning the name of the underlying C++ class. There's no reason for this function to even be exposed to the Ruby interface, just an oversight on my part. If you need to know the Class of the Ruby object you've got, just use the standard Object#class instead. |