Sha256: 4c0d309238bea2bbc475ca09f61564ed1ec0b0c32426a7e911936c5d66b63b77
Contents?: true
Size: 548 Bytes
Versions: 9
Compression:
Stored size: 548 Bytes
Contents
# Frame that displays a print preview class Wx::PRT::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::PRT::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
9 entries across 9 versions & 1 rubygems