aboutsummaryrefslogtreecommitdiff
path: root/iPhone/GTMUILocalizerTest.h
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-11-16 14:30:21 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-11-16 14:30:21 +0000
commit711247f40bf28cc93e8be3e74bc5d654884c9ce4 (patch)
treebc5bc9f7fa4f47b49bd547a031535da7c6f8074e /iPhone/GTMUILocalizerTest.h
parent73d9542bde42d7b172f5db221d3403ceb4bdcf51 (diff)
[Author: qsr]
Handle UIButton in GTMUILocalizer To be noted: UISegmented Controls and UISearchBars were alredy working. UISwitch doesn't have any strings to be localized. R=dmaclach,thomasvl APPROVED=thomasvl
Diffstat (limited to 'iPhone/GTMUILocalizerTest.h')
-rw-r--r--iPhone/GTMUILocalizerTest.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/iPhone/GTMUILocalizerTest.h b/iPhone/GTMUILocalizerTest.h
index 87a0f22..0ee846c 100644
--- a/iPhone/GTMUILocalizerTest.h
+++ b/iPhone/GTMUILocalizerTest.h
@@ -22,8 +22,14 @@
@interface GTMUILocalizerTestViewController : UIViewController {
@private
UILabel *label_;
+ UIButton *button_;
+ UISegmentedControl *segmentedControl_;
+ UISearchBar *searchBar_;
}
@property(nonatomic, retain) IBOutlet UILabel *label;
+@property(nonatomic, retain) IBOutlet UIButton *button;
+@property(nonatomic, retain) IBOutlet UISegmentedControl *segmentedControl;
+@property(nonatomic, retain) IBOutlet UISearchBar *searchBar;
@end