]> git.saurik.com Git - winterboard.git/commitdiff
Add some comments to ChatKit stuff.
authorJay Freeman (saurik) <saurik@saurik.com>
Fri, 21 Oct 2011 04:09:15 +0000 (04:09 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Fri, 21 Oct 2011 04:09:15 +0000 (04:09 +0000)
Library.mm

index a872c5ce841761c0b68519906e7483121ae01747..92d2f62bedc81682b81adaddd832a01a39e5253a 100644 (file)
@@ -1555,6 +1555,7 @@ MSInstanceMessageHook1(void, CKTranscriptCell, setBackgroundColor, UIColor *, co
     [[self contentView] wb$setBackgroundColor:[UIColor clearColor]];
 }
 
+// iOS >= 5.0
 MSInstanceMessageHook2(id, CKTranscriptCell, initWithStyle,reuseIdentifier, int, style, NSString *, reuse) {
     if ((self = MSOldCall(style, reuse)) != nil) {
         [self setBackgroundColor:[UIColor clearColor]];
@@ -1562,6 +1563,7 @@ MSInstanceMessageHook2(id, CKTranscriptCell, initWithStyle,reuseIdentifier, int,
     } return self;
 }
 
+// iOS << 5.0
 MSInstanceMessageHook2(id, CKMessageCell, initWithStyle,reuseIdentifier, int, style, NSString *, reuse) {
     if ((self = MSOldCall(style, reuse)) != nil) {
         [self setBackgroundColor:[UIColor clearColor]];