Skip to content

Commit

Permalink
Merge branch 'master' into AppKitBridging
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Jul 19, 2012
2 parents b327bae + 0a61d4b commit 6c107f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -44,8 +44,9 @@ There are many places where TwUI could be improved:
# Documentation

You can generate documentation with [doxygen](http://www.doxygen.org). Install it, and then run:
> cd docs
> doxygen

cd docs
doxygen

Documentation is a work in progress, but the API will be familiar if you have used UIKit. (TODO: [appledoc](http://gentlebytes.com/appledoc/) looks very cool, moving to that might be nice).

Expand Down
4 changes: 2 additions & 2 deletions lib/UIKit/TUIAccessibilityElement.h
Expand Up @@ -11,11 +11,11 @@

// implements the TUIAccessibility informal protocol
@interface TUIAccessibilityElement : NSObject {
id accessibilityContainer;
__unsafe_unretained id accessibilityContainer;
NSString *accessibilityLabel;
}

@property (nonatomic, assign) id accessibilityContainer;
@property (nonatomic, __unsafe_unretained) id accessibilityContainer;
@property (nonatomic, copy) NSString *accessibilityLabel;

@end
8 changes: 0 additions & 8 deletions lib/UIKit/TUIAccessibilityElement.m
Expand Up @@ -14,18 +14,10 @@ @implementation TUIAccessibilityElement
@synthesize accessibilityContainer;
@synthesize accessibilityLabel;

- (void)dealloc
{
[accessibilityLabel release];

[super dealloc];
}

- (id)initWithAccessibilityContainer:(id)container
{
self = [super init];
if(self == nil) {
[self release];
return nil;
}

Expand Down

0 comments on commit 6c107f3

Please sign in to comment.