summaryrefslogtreecommitdiffstats
path: root/macosx/HBPreset.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-11-10 12:41:07 +0100
committerDamiano Galassi <[email protected]>2017-11-10 12:41:07 +0100
commit1f7aeb62b9ac51132fddc260e4193e07f056ed2f (patch)
tree6a5d34001cc93d596853b8ebf4233283098ce8cb /macosx/HBPreset.m
parent65597ee7f4bfa11838d815fceb6bc6dd24150c1f (diff)
MacGui: rename Folder to Category.
Diffstat (limited to 'macosx/HBPreset.m')
-rw-r--r--macosx/HBPreset.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBPreset.m b/macosx/HBPreset.m
index 5fad6ba4a..067f49773 100644
--- a/macosx/HBPreset.m
+++ b/macosx/HBPreset.m
@@ -68,7 +68,7 @@
return self;
}
-- (instancetype)initWithFolderName:(NSString *)title builtIn:(BOOL)builtIn;
+- (instancetype)initWithCategoryName:(NSString *)title builtIn:(BOOL)builtIn;
{
self = [self init];
if (self)
@@ -90,7 +90,7 @@
if ([dict[@"Folder"] boolValue])
{
- self = [self initWithFolderName:name builtIn:builtIn];
+ self = [self initWithCategoryName:name builtIn:builtIn];
for (NSDictionary *childDict in [dict[@"ChildrenArray"] reverseObjectEnumerator])
{
@@ -175,7 +175,7 @@
// Convert the array to a HBPreset tree.
if (presetsArray.count)
{
- self = [self initWithFolderName:@"Imported Presets" builtIn:NO];
+ self = [self initWithCategoryName:@"Imported Presets" builtIn:NO];
if (self)
{