set the inspector views' titles in each view's class

This commit is contained in:
Mitchell Livingston
2010-03-14 03:09:12 +00:00
parent 14d06e0ef3
commit b9e7cc8990
7 changed files with 30 additions and 14 deletions

View File

@@ -40,7 +40,11 @@
- (id) init
{
self = [super initWithNibName: @"InfoFileView" bundle: nil];
if ((self = [super initWithNibName: @"InfoFileView" bundle: nil]))
{
[self setTitle: NSLocalizedString(@"Files", "Inspector view -> title")];
}
return self;
}