diff options
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWSplitView.m')
-rw-r--r-- | Frameworks/BWToolkitFramework.framework/BWSplitView.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWSplitView.m b/Frameworks/BWToolkitFramework.framework/BWSplitView.m index f5c3d089..1252cce8 100644 --- a/Frameworks/BWToolkitFramework.framework/BWSplitView.m +++ b/Frameworks/BWToolkitFramework.framework/BWSplitView.m @@ -331,6 +331,7 @@ static float scaleFactor = 1.0f; NSMutableDictionary *tempMinValues = [[self minValues] mutableCopy]; [tempMinValues setObject:minSize forKey:[NSNumber numberWithInt:[[self subviews] indexOfObject:[self collapsibleSubview]]]]; [self setMinValues:tempMinValues]; + [tempMinValues release]; } } @@ -341,6 +342,7 @@ static float scaleFactor = 1.0f; NSMutableDictionary *tempMinValues = [[self minValues] mutableCopy]; [tempMinValues removeObjectForKey:[NSNumber numberWithInt:[[self subviews] indexOfObject:[self collapsibleSubview]]]]; [self setMinValues:tempMinValues]; + [tempMinValues release]; } } @@ -935,6 +937,9 @@ static float scaleFactor = 1.0f; [self clearPreferredProportionsAndSizes]; [self recalculatePreferredProportionsAndSizes]; } + + [preferredProportions release]; + [preferredSizes release]; } - (void)validateAndCalculatePreferredProportionsAndSizes; |