Sha256: fcf6bd96c64c0028b1c0d2ba86cb9f60560f5f92b88a0bf3c18df77df5b4be23
Contents?: true
Size: 378 Bytes
Versions: 35
Compression:
Stored size: 378 Bytes
Contents
# The root class for most (not all) WxRuby classes class Wx::Object # Massage the output of inspect to show the public module name (Wx), # instead of the internal name (Wxruby2) def to_s super.sub('ruby2', '') end # Returns a string containing the C++ pointer address of this # object. Only useful for debugging. def ptr_addr Wx::ptr_addr(self) end end
Version data entries
35 entries across 35 versions & 3 rubygems