~tcurdt/sparkle/devel

« back to all changes in this revision

Viewing changes to SUProbingUpdateDriver.h

  • Committer: Andy Matuschak
  • Date: 2008-06-29 05:28:14 UTC
  • Revision ID: andy@andymatuschak.org-20080629052814-j3qbetfmmrxm132j
Improved delegate names and made SUProbingUpdateDriver use SUUpdater's delegate methods instead of dumbly having its own.

IF YOU ARE IMPLEMENTING ANY DELEGATE METHODS TO A SPARKLE CLASS, CHECK THESE DIFFS AND ENSURE THAT THE SELECTORS YOU'RE IMPLEMENTING HAVEN'T CHANGED. There's a pretty good chance they have. But for good reason, I promise!

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
@interface SUProbingUpdateDriver : SUBasicUpdateDriver { }
17
17
@end
18
18
 
19
 
@interface NSObject (SUProbeDriverDelegateProtocol)
20
 
- (void)didFindValidUpdate:(SUAppcastItem *)item toHostBundle:(NSBundle *)hb;
21
 
- (void)didNotFindUpdateToHostBundle:(NSBundle *)hb;
22
 
@end
23
 
 
24
19
#endif