Skip to content

Commit d56c478

Browse files
committed
Merge branch 'master' into 3.4
2 parents e29af14 + 81e03fc commit d56c478

File tree

43 files changed

+1292
-891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1292
-891
lines changed

Utilities/XMPPIDTracker.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,10 @@ - (void)invokeWithObject:(id)obj
207207
block(obj, self);
208208
else
209209
{
210-
// Getting a warning about this?
211-
// Use -Wno-arc-performSelector-leaks to quiet the compiler.
210+
#pragma clang diagnostic push
211+
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
212212
[target performSelector:selector withObject:obj withObject:self];
213+
#pragma clang diagnostic pop
213214
}
214215
}
215216

Xcode/Testing/AutoPingTest/Desktop/AutoPingTest.xcodeproj/project.pbxproj

Lines changed: 41 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
56F8388914C79AEB00AF62B3 /* XMPPAutoTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F8388614C79AEB00AF62B3 /* XMPPAutoTime.m */; };
11+
56F8388A14C79AEB00AF62B3 /* XMPPTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F8388814C79AEB00AF62B3 /* XMPPTime.m */; };
1012
DC17CD3E1355ED29007A32CC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC17CD3D1355ED29007A32CC /* Cocoa.framework */; };
1113
DC17CD481355ED29007A32CC /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = DC17CD461355ED29007A32CC /* InfoPlist.strings */; };
1214
DC17CD4B1355ED29007A32CC /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DC17CD4A1355ED29007A32CC /* main.m */; };
@@ -17,8 +19,8 @@
1719
DC17CDDF1355F11A007A32CC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC17CDDE1355F11A007A32CC /* SystemConfiguration.framework */; };
1820
DC17CDE11355F122007A32CC /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC17CDE01355F122007A32CC /* Security.framework */; };
1921
DC17CDE31355F151007A32CC /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DC17CDE21355F151007A32CC /* libresolv.dylib */; };
20-
DC26A2AE1528EBF3004B71C0 /* XMPPDigestAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC26A2AA1528EBF3004B71C0 /* XMPPDigestAuthentication.m */; };
21-
DC26A2AF1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC26A2AD1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.m */; };
22+
DC30E2D8153DFBEF001B9E6D /* XMPPDigestAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC30E2D4153DFBEF001B9E6D /* XMPPDigestAuthentication.m */; };
23+
DC30E2D9153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC30E2D7153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.m */; };
2224
DC597F5A14101FBF0050774C /* NSData+XMPP.m in Sources */ = {isa = PBXBuildFile; fileRef = DC597E9C14101FBF0050774C /* NSData+XMPP.m */; };
2325
DC597F5B14101FBF0050774C /* NSNumber+XMPP.m in Sources */ = {isa = PBXBuildFile; fileRef = DC597E9E14101FBF0050774C /* NSNumber+XMPP.m */; };
2426
DC597F5C14101FBF0050774C /* NSXMLElement+XMPP.m in Sources */ = {isa = PBXBuildFile; fileRef = DC597EA014101FBF0050774C /* NSXMLElement+XMPP.m */; };
@@ -50,6 +52,10 @@
5052
/* End PBXBuildFile section */
5153

5254
/* Begin PBXFileReference section */
55+
56F8388514C79AEB00AF62B3 /* XMPPAutoTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPAutoTime.h; sourceTree = "<group>"; };
56+
56F8388614C79AEB00AF62B3 /* XMPPAutoTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPAutoTime.m; sourceTree = "<group>"; };
57+
56F8388714C79AEB00AF62B3 /* XMPPTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPTime.h; sourceTree = "<group>"; };
58+
56F8388814C79AEB00AF62B3 /* XMPPTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPTime.m; sourceTree = "<group>"; };
5359
DC17CD391355ED29007A32CC /* AutoPingTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AutoPingTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
5460
DC17CD3D1355ED29007A32CC /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
5561
DC17CD401355ED29007A32CC /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
@@ -67,12 +73,12 @@
6773
DC17CDDE1355F11A007A32CC /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
6874
DC17CDE01355F122007A32CC /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
6975
DC17CDE21355F151007A32CC /* libresolv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libresolv.dylib; path = usr/lib/libresolv.dylib; sourceTree = SDKROOT; };
70-
DC26A2A91528EBF3004B71C0 /* XMPPDigestAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPDigestAuthentication.h; sourceTree = "<group>"; };
71-
DC26A2AA1528EBF3004B71C0 /* XMPPDigestAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPDigestAuthentication.m; sourceTree = "<group>"; };
72-
DC26A2AB1528EBF3004B71C0 /* XMPPSASLAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPSASLAuthentication.h; sourceTree = "<group>"; };
73-
DC26A2AC1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPXFacebookPlatformAuthentication.h; sourceTree = "<group>"; };
74-
DC26A2AD1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPXFacebookPlatformAuthentication.m; sourceTree = "<group>"; };
75-
DC597E9414101F860050774C /* XMPPFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = XMPPFramework.h; path = ../../AutoTimeTest/XMPPFramework.h; sourceTree = "<group>"; };
76+
DC30E2CD153DFBA0001B9E6D /* XMPPFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = XMPPFramework.h; path = ../XMPPFramework.h; sourceTree = "<group>"; };
77+
DC30E2D3153DFBEF001B9E6D /* XMPPDigestAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPDigestAuthentication.h; sourceTree = "<group>"; };
78+
DC30E2D4153DFBEF001B9E6D /* XMPPDigestAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPDigestAuthentication.m; sourceTree = "<group>"; };
79+
DC30E2D5153DFBEF001B9E6D /* XMPPSASLAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPSASLAuthentication.h; sourceTree = "<group>"; };
80+
DC30E2D6153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPXFacebookPlatformAuthentication.h; sourceTree = "<group>"; };
81+
DC30E2D7153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPXFacebookPlatformAuthentication.m; sourceTree = "<group>"; };
7682
DC597E9B14101FBF0050774C /* NSData+XMPP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+XMPP.h"; sourceTree = "<group>"; };
7783
DC597E9C14101FBF0050774C /* NSData+XMPP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+XMPP.m"; sourceTree = "<group>"; };
7884
DC597E9D14101FBF0050774C /* NSNumber+XMPP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+XMPP.h"; sourceTree = "<group>"; };
@@ -152,6 +158,17 @@
152158
/* End PBXFrameworksBuildPhase section */
153159

154160
/* Begin PBXGroup section */
161+
56F8388414C79AEB00AF62B3 /* XEP-0202 */ = {
162+
isa = PBXGroup;
163+
children = (
164+
56F8388514C79AEB00AF62B3 /* XMPPAutoTime.h */,
165+
56F8388614C79AEB00AF62B3 /* XMPPAutoTime.m */,
166+
56F8388714C79AEB00AF62B3 /* XMPPTime.h */,
167+
56F8388814C79AEB00AF62B3 /* XMPPTime.m */,
168+
);
169+
path = "XEP-0202";
170+
sourceTree = "<group>";
171+
};
155172
DC17CD2E1355ED29007A32CC = {
156173
isa = PBXGroup;
157174
children = (
@@ -219,7 +236,7 @@
219236
DC17CD631355EDB2007A32CC /* XMPP */ = {
220237
isa = PBXGroup;
221238
children = (
222-
DC597E9414101F860050774C /* XMPPFramework.h */,
239+
DC30E2CD153DFBA0001B9E6D /* XMPPFramework.h */,
223240
DC597E9A14101FBF0050774C /* Categories */,
224241
DC597EA114101FBF0050774C /* Core */,
225242
DC597EB614101FBF0050774C /* Extensions */,
@@ -275,6 +292,7 @@
275292
children = (
276293
DC597F0914101FBF0050774C /* XEP-0082 */,
277294
DC597F1F14101FBF0050774C /* XEP-0199 */,
295+
56F8388414C79AEB00AF62B3 /* XEP-0202 */,
278296
);
279297
name = Extensions;
280298
path = ../../../../Extensions;
@@ -305,11 +323,11 @@
305323
DC597F2C14101FBF0050774C /* Utilities */ = {
306324
isa = PBXGroup;
307325
children = (
308-
DC26A2AB1528EBF3004B71C0 /* XMPPSASLAuthentication.h */,
309-
DC26A2A91528EBF3004B71C0 /* XMPPDigestAuthentication.h */,
310-
DC26A2AA1528EBF3004B71C0 /* XMPPDigestAuthentication.m */,
311-
DC26A2AC1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.h */,
312-
DC26A2AD1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.m */,
326+
DC30E2D3153DFBEF001B9E6D /* XMPPDigestAuthentication.h */,
327+
DC30E2D4153DFBEF001B9E6D /* XMPPDigestAuthentication.m */,
328+
DC30E2D5153DFBEF001B9E6D /* XMPPSASLAuthentication.h */,
329+
DC30E2D6153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.h */,
330+
DC30E2D7153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.m */,
313331
DC597F2D14101FBF0050774C /* DDList.h */,
314332
DC597F2E14101FBF0050774C /* DDList.m */,
315333
DC597F2F14101FBF0050774C /* GCDMulticastDelegate.h */,
@@ -399,6 +417,9 @@
399417
/* Begin PBXProject section */
400418
DC17CD301355ED29007A32CC /* Project object */ = {
401419
isa = PBXProject;
420+
attributes = {
421+
LastUpgradeCheck = 0420;
422+
};
402423
buildConfigurationList = DC17CD331355ED29007A32CC /* Build configuration list for PBXProject "AutoPingTest" */;
403424
compatibilityVersion = "Xcode 3.2";
404425
developmentRegion = English;
@@ -463,8 +484,10 @@
463484
DC597F9D14101FBF0050774C /* DDFileLogger.m in Sources */,
464485
DC597F9E14101FBF0050774C /* DDLog.m in Sources */,
465486
DC597F9F14101FBF0050774C /* DDTTYLogger.m in Sources */,
466-
DC26A2AE1528EBF3004B71C0 /* XMPPDigestAuthentication.m in Sources */,
467-
DC26A2AF1528EBF3004B71C0 /* XMPPXFacebookPlatformAuthentication.m in Sources */,
487+
56F8388914C79AEB00AF62B3 /* XMPPAutoTime.m in Sources */,
488+
56F8388A14C79AEB00AF62B3 /* XMPPTime.m in Sources */,
489+
DC30E2D8153DFBEF001B9E6D /* XMPPDigestAuthentication.m in Sources */,
490+
DC30E2D9153DFBEF001B9E6D /* XMPPXFacebookPlatformAuthentication.m in Sources */,
468491
);
469492
runOnlyForDeploymentPostprocessing = 0;
470493
};
@@ -537,6 +560,7 @@
537560
buildSettings = {
538561
ALWAYS_SEARCH_USER_PATHS = NO;
539562
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
563+
CLANG_ENABLE_OBJC_ARC = YES;
540564
COPY_PHASE_STRIP = NO;
541565
GCC_DYNAMIC_NO_PIC = NO;
542566
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
@@ -557,6 +581,7 @@
557581
buildSettings = {
558582
ALWAYS_SEARCH_USER_PATHS = NO;
559583
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
584+
CLANG_ENABLE_OBJC_ARC = YES;
560585
COPY_PHASE_STRIP = YES;
561586
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
562587
GCC_ENABLE_OBJC_EXCEPTIONS = YES;

Xcode/Testing/AutoPingTest/Desktop/AutoPingTest/AutoPingTestAppDelegate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
XMPPStream *xmppStream;
1717
XMPPAutoPing *xmppAutoPing;
1818

19-
NSWindow *window;
19+
__unsafe_unretained NSWindow *window;
2020
}
2121

22-
@property (assign) IBOutlet NSWindow *window;
22+
@property (unsafe_unretained) IBOutlet NSWindow *window;
2323

2424
@end

Xcode/Testing/AutoPingTest/Mobile/AutoPingTest.xcodeproj/project.pbxproj

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
DC26A2D11528EEE9004B71C0 /* XMPPDigestAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC26A2CD1528EEE9004B71C0 /* XMPPDigestAuthentication.m */; };
11-
DC26A2D21528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DC26A2D01528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.m */; };
10+
56F8341414C767AE00AF62B3 /* XMPPDigestAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F8341014C767AE00AF62B3 /* XMPPDigestAuthentication.m */; };
11+
56F8341514C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F8341314C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.m */; };
12+
DC30E328153DFD3E001B9E6D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC30E327153DFD3E001B9E6D /* Security.framework */; };
1213
DC597FBD141023930050774C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC597FBC141023930050774C /* UIKit.framework */; };
1314
DC597FBF141023930050774C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC597FBE141023930050774C /* Foundation.framework */; };
1415
DC597FC1141023930050774C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC597FC0141023930050774C /* CoreGraphics.framework */; };
@@ -56,11 +57,12 @@
5657
/* End PBXBuildFile section */
5758

5859
/* Begin PBXFileReference section */
59-
DC26A2CC1528EEE9004B71C0 /* XMPPDigestAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPDigestAuthentication.h; sourceTree = "<group>"; };
60-
DC26A2CD1528EEE9004B71C0 /* XMPPDigestAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPDigestAuthentication.m; sourceTree = "<group>"; };
61-
DC26A2CE1528EEE9004B71C0 /* XMPPSASLAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPSASLAuthentication.h; sourceTree = "<group>"; };
62-
DC26A2CF1528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPXFacebookPlatformAuthentication.h; sourceTree = "<group>"; };
63-
DC26A2D01528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPXFacebookPlatformAuthentication.m; sourceTree = "<group>"; };
60+
56F8340F14C767AE00AF62B3 /* XMPPDigestAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPDigestAuthentication.h; sourceTree = "<group>"; };
61+
56F8341014C767AE00AF62B3 /* XMPPDigestAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPDigestAuthentication.m; sourceTree = "<group>"; };
62+
56F8341114C767AE00AF62B3 /* XMPPSASLAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPSASLAuthentication.h; sourceTree = "<group>"; };
63+
56F8341214C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPPXFacebookPlatformAuthentication.h; sourceTree = "<group>"; };
64+
56F8341314C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMPPXFacebookPlatformAuthentication.m; sourceTree = "<group>"; };
65+
DC30E327153DFD3E001B9E6D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
6466
DC597FB8141023930050774C /* AutoPingTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AutoPingTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
6567
DC597FBC141023930050774C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
6668
DC597FBE141023930050774C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -156,6 +158,7 @@
156158
isa = PBXFrameworksBuildPhase;
157159
buildActionMask = 2147483647;
158160
files = (
161+
DC30E328153DFD3E001B9E6D /* Security.framework in Frameworks */,
159162
DC5980F1141025770050774C /* CFNetwork.framework in Frameworks */,
160163
DC5980EF141025530050774C /* libresolv.dylib in Frameworks */,
161164
DC5980ED141025470050774C /* libxml2.dylib in Frameworks */,
@@ -172,6 +175,7 @@
172175
DC597FAD141023930050774C = {
173176
isa = PBXGroup;
174177
children = (
178+
DC30E327153DFD3E001B9E6D /* Security.framework */,
175179
DC5980E8141023B10050774C /* XMPP */,
176180
DC597FC2141023930050774C /* AutoPingTest */,
177181
DC597FBB141023930050774C /* Frameworks */,
@@ -314,11 +318,11 @@
314318
DC59818E141033210050774C /* Utilities */ = {
315319
isa = PBXGroup;
316320
children = (
317-
DC26A2CE1528EEE9004B71C0 /* XMPPSASLAuthentication.h */,
318-
DC26A2CC1528EEE9004B71C0 /* XMPPDigestAuthentication.h */,
319-
DC26A2CD1528EEE9004B71C0 /* XMPPDigestAuthentication.m */,
320-
DC26A2CF1528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.h */,
321-
DC26A2D01528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.m */,
321+
56F8340F14C767AE00AF62B3 /* XMPPDigestAuthentication.h */,
322+
56F8341014C767AE00AF62B3 /* XMPPDigestAuthentication.m */,
323+
56F8341114C767AE00AF62B3 /* XMPPSASLAuthentication.h */,
324+
56F8341214C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.h */,
325+
56F8341314C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.m */,
322326
DC59818F141033210050774C /* DDList.h */,
323327
DC598190141033210050774C /* DDList.m */,
324328
DC598191141033210050774C /* GCDMulticastDelegate.h */,
@@ -514,8 +518,8 @@
514518
DC598203141033210050774C /* DDXMLDocument.m in Sources */,
515519
DC598204141033210050774C /* DDXMLElement.m in Sources */,
516520
DC598205141033210050774C /* DDXMLNode.m in Sources */,
517-
DC26A2D11528EEE9004B71C0 /* XMPPDigestAuthentication.m in Sources */,
518-
DC26A2D21528EEE9004B71C0 /* XMPPXFacebookPlatformAuthentication.m in Sources */,
521+
56F8341414C767AE00AF62B3 /* XMPPDigestAuthentication.m in Sources */,
522+
56F8341514C767AE00AF62B3 /* XMPPXFacebookPlatformAuthentication.m in Sources */,
519523
);
520524
runOnlyForDeploymentPostprocessing = 0;
521525
};

Xcode/Testing/AutoPingTest/Mobile/AutoPingTest/main.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
//
88

99
#import <UIKit/UIKit.h>
10+
#import "AutoPingTestAppDelegate.h"
1011

1112
int main(int argc, char *argv[])
1213
{
13-
@autoreleasepool {
14-
int retVal = UIApplicationMain(argc, argv, nil, nil);
15-
return retVal;
16-
}
14+
@autoreleasepool {
15+
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AutoPingTestAppDelegate class]));
16+
}
1717
}

0 commit comments

Comments
 (0)