Chameleon Applications

Chameleon Applications Commit Details

Date:2011-11-19 22:25:23 (12 years 4 months ago)
Author:Rekursor
Commit:361
Parents: 360
Message:more freeze restore hide/rename not refreshed bug fixes
Changes:
M/trunk/ChameleonPrefPane/Sources/BootSetupController.mm
M/trunk/ChameleonPrefPane/Sources/PartitionInfoManager.mm

File differences

trunk/ChameleonPrefPane/Sources/PartitionInfoManager.mm
2727
2828
2929
30
31
32
33
34
30
31
32
33
34
3535
3636
3737
{
NSString* s = [currentCompare stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString: @" \t\""]];
if ([ [pe hdString] compare:s] == NSOrderedSame
|| [ [pe bsdName] compare:s] == NSOrderedSame
|| [ [pe vName] compare:s] == NSOrderedSame
|| [ [pe vUUID] compare:s] == NSOrderedSame
|| [ [pe vAliasName] compare:s] == NSOrderedSame
if ([ [pe hdString] isEqual:s]
|| [ [pe bsdName] isEqual:s]
|| [ [pe vName] isEqual:s]
|| [ [pe vUUID] isEqual:s]
|| [ [pe vAliasName] isEqual: s]
)
*stop= YES;
trunk/ChameleonPrefPane/Sources/BootSetupController.mm
123123
124124
125125
126
126
127
128
127129
128130
129131
[partList addObject:p];
}
}
// PartitionExtractor::instance().sortPartList();
// for mgr to refresh hide and rename attributes
[PartsInfoMgr hideParts:nil];
[PartsInfoMgr renameParts:nil];
}

Archive Download the corresponding diff file

Revision: 361