1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Adapted the PE edition to the latest refactorings and fixed a (very) minor memory leak in ME.

This commit is contained in:
Virgil Dupras
2010-02-17 17:37:42 +01:00
parent 47b38c7d45
commit 07df5126b3
4 changed files with 22 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ http://www.hardcoded.net/licenses/hs_license
{
[super awakeFromNib];
[[self window] setTitle:@"dupeGuru Music Edition"];
NSMutableIndexSet *deltaColumns = [[NSMutableIndexSet indexSetWithIndexesInRange:NSMakeRange(2,7)] retain];
NSMutableIndexSet *deltaColumns = [NSMutableIndexSet indexSetWithIndexesInRange:NSMakeRange(2,7)];
[deltaColumns removeIndex:6];
[outline setDeltaColumns:deltaColumns];
}