this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #531 from kamillys/master

Fix typos; add kABDatabaseChangedNotification

authored by

Sergey Bugaev and committed by
GitHub
a567e86c 55e55542

+5 -5
+1
src/AddressBook/include/AddressBook/ABGlobals.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 + extern NSString *const kABDatabaseChangedNotification; 22 23 extern NSString *const kABDatabaseChangedExternallyNotification; 23 24 24 25 extern NSString *const kABEmailProperty;
+2 -1
src/AddressBook/src/ABGlobals.m
··· 19 19 20 20 #import <AddressBook/ABGlobals.h> 21 21 22 - NSString *const kABDaabaseChangedExternallyNotification=@"ABDatabaseChangedExternallyNotification"; 22 + NSString *const kABDatabaseChangedNotification=@"ABDatabaseChangedNotification"; 23 + NSString *const kABDatabaseChangedExternallyNotification=@"ABDatabaseChangedExternallyNotification"; 23 24 24 25 NSString *const kABEmailProperty=@"ABEmailProperty"; 25 26 NSString *const kABFirstNameProperty=@"ABFirstNameProperty";
-2
src/AddressBook/src/ABRecord.m
··· 21 21 22 22 @implementation ABRecord 23 23 24 - @implementation ABAddressBook 25 - 26 24 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 27 25 { 28 26 return [NSMethodSignature signatureWithObjCTypes: "v@:"];
+2 -2
src/Carbon/include/HIToolbox/TextInputSources.h
··· 1 1 #ifndef _Carbon_TextInputSources_H_ 2 2 #define _Carbon_TextInputSources_H_ 3 3 4 - #ifndef __cplusplus 4 + #ifdef __cplusplus 5 5 extern "C" { 6 6 #endif 7 7 ··· 12 12 extern const CFStringRef kTISPropertyInputSourceType; 13 13 extern const CFStringRef kTISTypeKeyboardLayout; 14 14 15 - #ifndef __cplusplus 15 + #ifdef __cplusplus 16 16 } 17 17 #endif 18 18