Skip to content

Instantly share code, notes, and snippets.

@mmower
Created June 30, 2011 11:45
Show Gist options
  • Select an option

  • Save mmower/1056071 to your computer and use it in GitHub Desktop.

Select an option

Save mmower/1056071 to your computer and use it in GitHub Desktop.
@interface FRUploadListViewCell : PXListViewCell {
NSBox *_box;
NSTextField *_statusLabel;
NSProgressIndicator *_progressIndicator;
NSObjectController *_videoController;
}
@property (nonatomic,retain) IBOutlet NSBox *box;
@property (nonatomic,retain) IBOutlet NSTextField *statusLabel;
@property (nonatomic,retain) IBOutlet NSProgressIndicator *progressIndicator;
@property (nonatomic,retain) IBOutlet NSObjectController *videoController;
- (void)setVideo:(FRVideo *)video;
@end
@implementation FRUploadListViewCell
@synthesize box = _box;
@synthesize progressIndicator = _progressIndicator;
@synthesize statusLabel = _stausLabel;
CompileC build/Ferry.build/Release/Ferry.build/Objects-normal/i386/FRUploadListViewCell.o Source/ui/FRUploadListViewCell.m normal i386 objective-c com.apple.compilers.gcc.4_2
cd /Volumes/Corrino/matt/Projects/Work/Ferry
setenv LANG en_US.US-ASCII
/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=gnu99 -Wno-trigraphs -fpascal-strings -fasm-blocks -Os -mdynamic-no-pic -Werror -Wreturn-type -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.6.sdk -fobjc-gc-only -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -iquote /Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/Ferry-generated-files.hmap -I/Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/Ferry-own-target-headers.hmap -I/Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/Ferry-all-target-headers.hmap -iquote /Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/Ferry-project-headers.hmap -Wall -F/Volumes/Corrino/matt/Projects/Work/Ferry/build/Release -F/Volumes/Corrino/matt/Projects/Work/Ferry/Frameworks -I/Volumes/Corrino/matt/Projects/Work/Ferry/build/Release/include -I/Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/DerivedSources/i386 -I/Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/DerivedSources -include /var/folders/Wa/Waqlh0odHCmFYsfhC43UmE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Ferry_Prefix-arpbyxagjyfmmdafogdwpbskkxai/Ferry_Prefix.pch -c /Volumes/Corrino/matt/Projects/Work/Ferry/Source/ui/FRUploadListViewCell.m -o /Volumes/Corrino/matt/Projects/Work/Ferry/build/Ferry.build/Release/Ferry.build/Objects-normal/i386/FRUploadListViewCell.o
cc1obj: warnings being treated as errors
/Volumes/Corrino/matt/Projects/Work/Ferry/Source/ui/FRUploadListViewCell.m:17: warning: ivar name '_stausLabel' specified on the synthesized property 'statusLabel' not found
/Volumes/Corrino/matt/Projects/Work/Ferry/Source/ui/FRUploadListViewCell.m:17: error: synthesized property 'statusLabel' must either be named the same as a compatible ivar or must explicitly name an ivar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment