aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleEditorController.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-01-04 03:57:26 +0100
committerMax <post@wickenrode.com>2015-01-04 03:57:26 +0100
commit2735e15bf5d4b3a976435ebb29ca9073de0e5071 (patch)
treee2088e442aa2d100ceafd8c0c4789e033fd12ac3 /Source/SPBundleEditorController.m
parentdb64bd1b5affd00332906901ee57d6f681faf7ea (diff)
downloadsequelpro-2735e15bf5d4b3a976435ebb29ca9073de0e5071.tar.gz
sequelpro-2735e15bf5d4b3a976435ebb29ca9073de0e5071.tar.bz2
sequelpro-2735e15bf5d4b3a976435ebb29ca9073de0e5071.zip
Formalize [x release], x = nil; convention
Take this commit as a proposal to formalize our existing "[x release], x = nil;" convention by introducing a macro for it. Feel free to revert this commit if you see issues with the approch or implementation.
Diffstat (limited to 'Source/SPBundleEditorController.m')
-rw-r--r--Source/SPBundleEditorController.m18
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m
index ac227cf4..69652bf1 100644
--- a/Source/SPBundleEditorController.m
+++ b/Source/SPBundleEditorController.m
@@ -1093,7 +1093,7 @@ static NSString *SPSaveBundleAction = @"SPSaveBundle";
[draggedFilePath release];
draggedFilePath = nil;
}
- if(oldBundleName) [oldBundleName release], oldBundleName = nil;
+ if(oldBundleName) SPClear(oldBundleName);
}
#pragma mark -
@@ -1234,13 +1234,13 @@ static NSString *SPSaveBundleAction = @"SPSaveBundle";
// Remember selected bundle name to reset the name if the user cancelled
// the editing of the bundle name
- if(oldBundleName) [oldBundleName release], oldBundleName = nil;
+ if(oldBundleName) SPClear(oldBundleName);
if(![[self _currentSelectedObject] objectForKey:kChildrenKey]) {
oldBundleName = [[[self _currentSelectedObject] objectForKey:kBundleNameKey] retain];
[self _enableBundleDataInput:YES bundleEnabled:![[[self _currentSelectedObject] objectForKey:@"disabled"] boolValue]];
} else {
[self _enableBundleDataInput:NO bundleEnabled:NO];
- if(oldBundleName) [oldBundleName release], oldBundleName = nil;
+ if(oldBundleName) SPClear(oldBundleName);
}
// Remember the selected bundle name in touchedBundleArray to save only those
@@ -1386,7 +1386,7 @@ static NSString *SPSaveBundleAction = @"SPSaveBundle";
[commandBundleTreeController rearrangeObjects];
[commandsOutlineView reloadData];
- if(oldBundleName) [oldBundleName release], oldBundleName = nil;
+ if(oldBundleName) SPClear(oldBundleName);
oldBundleName = [[[self _currentSelectedObject] objectForKey:kBundleNameKey] retain];
if(oldBundleName != nil && ![touchedBundleArray containsObject:oldBundleName])
[touchedBundleArray addObject:oldBundleName];
@@ -2102,11 +2102,11 @@ static NSString *SPSaveBundleAction = @"SPSaveBundle";
[shellVariableSuggestions release];
[deletedDefaultBundles release];
- if (touchedBundleArray) [touchedBundleArray release], touchedBundleArray = nil;
- if (commandBundleTree) [commandBundleTree release], commandBundleTree = nil;
- if (sortDescriptor) [sortDescriptor release], sortDescriptor = nil;
- if (bundlePath) [bundlePath release], bundlePath = nil;
- if (esUndoManager) [esUndoManager release], esUndoManager = nil;
+ if (touchedBundleArray) SPClear(touchedBundleArray);
+ if (commandBundleTree) SPClear(commandBundleTree);
+ if (sortDescriptor) SPClear(sortDescriptor);
+ if (bundlePath) SPClear(bundlePath);
+ if (esUndoManager) SPClear(esUndoManager);
[super dealloc];
}