1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 13:16:53 +00:00

begin variables with f!

This commit is contained in:
Mitchell Livingston 2006-07-15 18:49:33 +00:00
parent 5c9cad43d5
commit 6573d984de
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@
NSString * fPrefString, * fPrefKey;
BOOL fEnabled;
NSTrackingRectTag trackingTag;
NSTrackingRectTag fTrackingTag;
}
- (void) setText: (NSString *) text;

View file

@ -67,7 +67,7 @@
- (void) awakeFromNib
{
trackingTag = [self addTrackingRect: [self bounds] owner: self userData: nil assumeInside: NO];
fTrackingTag = [self addTrackingRect: [self bounds] owner: self userData: nil assumeInside: NO];
}
- (void) dealloc
@ -160,7 +160,7 @@
- (void) resetBounds: (NSNotification *) notification
{
[self removeTrackingRect: trackingTag];
[self removeTrackingRect: fTrackingTag];
[self addTrackingRect: [self bounds] owner: self userData: nil assumeInside: NO];
}