aboutsummaryrefslogtreecommitdiffhomepage
path: root/example
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-07-03 00:04:57 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-07-03 00:04:57 -0400
commit7f6923f520745ff9f1dd4df142de96ecbe64e045 (patch)
treeaf8259f66e5be5cb73e54eb0fc55e9419150b00e /example
parente50fcbb5dc3603c0138a3844aaf514373bb52938 (diff)
Updated type of MCLogEnabled to int instead of bool.
Diffstat (limited to 'example')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/main.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/main.mm b/example/ios/iOS UI Test/iOS UI Test/main.mm
index 0089973b..e6253102 100644
--- a/example/ios/iOS UI Test/iOS UI Test/main.mm
+++ b/example/ios/iOS UI Test/iOS UI Test/main.mm
@@ -12,6 +12,6 @@
#import <MailCore/MailCore.h>
int main(int argc, char *argv[]) {
- MCLogEnabled = true;
+ MCLogEnabled = 1;
return UIApplicationMain(argc, argv, nil, @"AppDelegate");
}