diff options
author | Paul Young <paulyoungonline@gmail.com> | 2013-07-03 00:04:57 -0400 |
---|---|---|
committer | Paul Young <paulyoungonline@gmail.com> | 2013-07-03 00:04:57 -0400 |
commit | 7f6923f520745ff9f1dd4df142de96ecbe64e045 (patch) | |
tree | af8259f66e5be5cb73e54eb0fc55e9419150b00e /example | |
parent | e50fcbb5dc3603c0138a3844aaf514373bb52938 (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.mm | 2 |
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"); } |