Sha256: bb14cae4c60f0ca33915784df0b20afd32fda02294e7b9fc16a387f3ad851369

Contents?: true

Size: 604 Bytes

Versions: 14

Compression:

Stored size: 604 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
# 
# Some parts are
# Copyright 2004-2007, wxRuby development team
# released under the MIT-like wxRuby2 license

# 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

14 entries across 14 versions & 1 rubygems

Version Path
wxruby3-1.2.1 lib/wx/core/object.rb
wxruby3-1.2.0 lib/wx/core/object.rb
wxruby3-1.1.2 lib/wx/core/object.rb
wxruby3-1.1.1 lib/wx/core/object.rb
wxruby3-1.1.0 lib/wx/core/object.rb
wxruby3-1.0.1 lib/wx/core/object.rb
wxruby3-0.9.8 lib/wx/core/object.rb
wxruby3-0.9.7 lib/wx/core/object.rb
wxruby3-0.9.5 lib/wx/core/object.rb
wxruby3-0.9.4 lib/wx/core/object.rb
wxruby3-0.9.3 lib/wx/core/object.rb
wxruby3-0.9.2 lib/wx/core/object.rb
wxruby3-0.9.1 lib/wx/core/object.rb
wxruby3-0.9.0 lib/wx/core/object.rb