aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2016-06-14 09:48:56 -0400
committerGravatar GitHub <noreply@github.com>2016-06-14 09:48:56 -0400
commit03623a95a6be9adee2db1c195bb2cf991ac99464 (patch)
tree38785a7cff643ec6f96c44117bda88389712f9c9
parent016b5c7bc2bceefb672c9880b8c5cf037c003c5d (diff)
parent559f1ae484b55f9c49042a3f8ade3120400eacf4 (diff)
Merge pull request #118 from strangewiz/master
Add missing super awakeFromNib to GTMFadeTruncatingLabel and GTMUILocalizer
-rw-r--r--iPhone/GTMFadeTruncatingLabel.m1
-rw-r--r--iPhone/GTMUILocalizer.m1
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];