Files
macvim-mirror/PSMTabBarControl/source/PSMProgressIndicator.m
T
Bjorn Winckler 9ed9a9f105 Initial import
git-svn-id: http://macvim.googlecode.com/svn/trunk@5 96c4425d-ca35-0410-94e5-3396d5c13a8f
2007-07-25 07:09:26 +00:00

21 lines
421 B
Objective-C

//
// PSMProgressIndicator.m
// PSMTabBarControl
//
// Created by John Pannell on 2/23/06.
// Copyright 2006 Positive Spin Media. All rights reserved.
//
#import "PSMProgressIndicator.h"
@implementation PSMProgressIndicator
// overrides to make tab bar control re-layout things if status changes
- (void)setHidden:(BOOL)flag
{
[super setHidden:flag];
[(PSMTabBarControl *)[self superview] update];
}
@end