diff options
author | Thomas Van Lenten <thomasvl@google.com> | 2016-06-14 09:48:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-14 09:48:56 -0400 |
commit | 03623a95a6be9adee2db1c195bb2cf991ac99464 (patch) | |
tree | 38785a7cff643ec6f96c44117bda88389712f9c9 | |
parent | 016b5c7bc2bceefb672c9880b8c5cf037c003c5d (diff) | |
parent | 559f1ae484b55f9c49042a3f8ade3120400eacf4 (diff) |
Merge pull request #118 from strangewiz/master
Add missing super awakeFromNib to GTMFadeTruncatingLabel and GTMUILocalizer
-rw-r--r-- | iPhone/GTMFadeTruncatingLabel.m | 1 | ||||
-rw-r--r-- | iPhone/GTMUILocalizer.m | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/iPhone/GTMFadeTruncatingLabel.m b/iPhone/GTMFadeTruncatingLabel.m index 58f0621..145cb16 100644 --- a/iPhone/GTMFadeTruncatingLabel.m +++ b/iPhone/GTMFadeTruncatingLabel.m @@ -41,6 +41,7 @@ } - (void)awakeFromNib { + [super awakeFromNib]; [self setup]; } diff --git a/iPhone/GTMUILocalizer.m b/iPhone/GTMUILocalizer.m index 269d2f6..f9ec752 100644 --- a/iPhone/GTMUILocalizer.m +++ b/iPhone/GTMUILocalizer.m @@ -48,6 +48,7 @@ } - (void)awakeFromNib { + [super awakeFromNib]; id owner = self.owner; if (owner) { NSBundle *newBundle = [[self class] bundleForOwner:owner]; |