aboutsummaryrefslogtreecommitdiffhomepage
path: root/example
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 22:37:49 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 22:37:49 -0400
commit7f7e86d9a24a9849a6d854073640ab3e95cb2168 (patch)
tree25840f50b399f5c0bcd1f34ef46d6c6aab052363 /example
parent58fc7bb84a0bb5b053a63857dc5e81b732c4cf8b (diff)
Renamed block parameter.
Diffstat (limited to 'example')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/MasterViewController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m b/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m
index 0e9e0536..accd9040 100644
--- a/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m
+++ b/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m
@@ -178,8 +178,8 @@ finishedRefreshWithFetcher:(GTMHTTPFetcher *)fetcher
cell.messageRenderingOperation = [self.imapSession plainTextBodyRenderingOperationWithMessage:message
folder:@"INBOX"];
- [cell.messageRenderingOperation start:^(NSString * htmlString, NSError * error) {
- cell.detailTextLabel.text = htmlString;
+ [cell.messageRenderingOperation start:^(NSString * plainTextBodyString, NSError * error) {
+ cell.detailTextLabel.text = plainTextBodyString;
cell.messageRenderingOperation = nil;
}];