Files
cappuccino/Tests/Manual/CPTabViewNibTest/TabViewController.j
T
David Richardson 4784a1a102 Normalize application naming in ./Tests/Manual
Ensure:
* CamelCase, ending in Test
* No hyphens, spaces, underscores or other non-alpha characters

Updated application directory names.
Update Jakefiles.
2026-09-08 17:47:30 -06:00

14 lines
196 B
Plaintext

@implementation TabViewController : CPViewController
{
}
- (void)viewDidAppear
{
CPLog.debug(_cmd);
var view = [self view];
[view setFrameSize:[[view superview] frameSize]];
}
@end