Ticket #128 (closed defect: invalid)
Default code in template for NSView-based objects does not execute
| Reported by: | francois@… | Owned by: | lsansonetti@… |
|---|---|---|---|
| Priority: | blocker | Milestone: | |
| Component: | MacRuby | Keywords: | |
| Cc: |
Description
the code for initWithFrame does not execute:
def initWithFrame(frame)
super_initWithFrame(frame) # Initialization code here. return self
end
should be replaced by
def initWithFrame(frame)
if super
# Initialization code here.
end return self
end
Change History
Note: See
TracTickets for help on using
tickets.

