mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-25 05:19:27 +00:00
Fixed deallocation cleanup
Minor view changes Sketching path bar to use for search as hint to where the entries are Some experiments with the filter bar (extracted the view to a separate nib)
This commit is contained in:
@@ -29,8 +29,7 @@ NSString *const MPGeneralSetingsIdentifier = @"GeneralSettingsTab";
|
||||
return [self initWithNibName:@"GeneralSettings" bundle:[NSBundle mainBundle]];
|
||||
}
|
||||
|
||||
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
||||
{
|
||||
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
|
||||
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
||||
return self;
|
||||
}
|
||||
@@ -39,7 +38,7 @@ NSString *const MPGeneralSetingsIdentifier = @"GeneralSettingsTab";
|
||||
// setup connections
|
||||
NSMenu *encodingMenu = [[NSMenu allocWithZone:[NSMenu menuZone]] init];
|
||||
NSMenuItem *item;
|
||||
|
||||
|
||||
item = [[NSMenuItem allocWithZone:[NSMenu menuZone]] initWithTitle:@"UTF8 Encoding" action:NULL keyEquivalent:@""];
|
||||
[item setRepresentedObject:[NSNumber numberWithInt:NSUTF8StringEncoding]];
|
||||
[encodingMenu addItem:item];
|
||||
|
||||
Reference in New Issue
Block a user