-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Line 254 in file dwt/widgets/Button.d
NSAttributedString createString() {
NSAttributedString attribStr = createString(text, null, foreground, style, true, true);
attribStr.autorelease();
return attribStr;
}
attribStr.autorelease(); causes the crash. If commented out, snippet won't crash. Problem (probably): attribStr is freed before it is returned. In Objective-C this is normally avoided by
return [attribStr autorelease]; // in the return statement
Note: Check how many other snippets depend on Buttons!
Metadata
Metadata
Assignees
Labels
No labels