Sha256: 6c7171b1140c619902f7f38ad9f0c1de64dfde36e5b093a5227c4ee051f0708b
Contents?: true
Size: 538 Bytes
Versions: 67
Compression:
Stored size: 538 Bytes
Contents
# Frame that displays a print preview class Wx::PreviewFrame # a PreviewFrame has a preview associated with it that must be # protected from Ruby's GC. However, there is no C++ method to access # the Wx::PrintPreview (only a protected member), so instead we have # to assign it to an instance variable so it is marked correctly when # the frame displaying it is marked. wx_init = self.instance_method(:initialize) define_method(:initialize) do | *args | wx_init.bind(self).call(*args) @__preview = args[0] end end
Version data entries
67 entries across 67 versions & 3 rubygems