339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
otherTimer = (OFTimer*)object_;
return [fireDate compare: otherTimer->fireDate];
}
- (void)fire
{
OF_ENSURE(arguments >= 0 && arguments <= 2);
#ifdef OF_HAVE_BLOCKS
if (block != NULL)
block(self);
else {
#endif
switch (arguments) {
|
|
|
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
otherTimer = (OFTimer*)object_;
return [fireDate compare: otherTimer->fireDate];
}
- (void)fire
{
OF_ENSURE(arguments <= 2);
#ifdef OF_HAVE_BLOCKS
if (block != NULL)
block(self);
else {
#endif
switch (arguments) {
|