[Libreoffice-commits] core.git: apple_remote/source include/apple_remote

Julien Nabet serval2412 at yahoo.fr
Mon Aug 21 05:40:56 UTC 2017


 apple_remote/source/HIDRemoteControlDevice.m |   12 ++++++------
 apple_remote/source/RemoteControl.m          |    8 ++++----
 include/apple_remote/RemoteControl.h         |    4 ++--
 3 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 59fd62fc2ff86320da67f99171eedbfe2d931c2b
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Aug 20 22:28:39 2017 +0200

    Typo notifcation->notification
    
    Change-Id: I411105f1a3d519dd08bee55c722e4a06a14f238d
    Reviewed-on: https://gerrit.libreoffice.org/41368
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/apple_remote/source/HIDRemoteControlDevice.m b/apple_remote/source/HIDRemoteControlDevice.m
index ba1ebb25d243..b96ac721b3b3 100644
--- a/apple_remote/source/HIDRemoteControlDevice.m
+++ b/apple_remote/source/HIDRemoteControlDevice.m
@@ -43,7 +43,7 @@
 - (IOHIDQueueInterface**) queue;
 - (IOHIDDeviceInterface**) hidDeviceInterface;
 - (void) handleEventWithCookieString: (NSString*) cookieString sumOfValues: (SInt32) sumOfValues;
-- (void) removeNotifcationObserver;
+- (void) removeNotificationObserver;
 - (void) remoteControlAvailable:(NSNotification *)notification;
 
 @end
@@ -96,7 +96,7 @@
 }
 
 - (void) dealloc {
-	[self removeNotifcationObserver];
+	[self removeNotificationObserver];
 	[self stopListening:self];
 	[cookieToButtonMapping release];
 	[super dealloc];
@@ -168,7 +168,7 @@
 
 	if ([self isOpenInExclusiveMode] && fixSecureEventInputBug) EnableSecureEventInput();
 
-	[self removeNotifcationObserver];
+	[self removeNotificationObserver];
 
 	io_object_t hidDevice = [[self class] findRemoteDevice];
 	if (hidDevice == 0) return;
@@ -240,7 +240,7 @@ cleanup:
 	if ([self isOpenInExclusiveMode] && fixSecureEventInputBug) DisableSecureEventInput();
 
 	if ([self isOpenInExclusiveMode] && sendNotification) {
-		[[self class] sendFinishedNotifcationForAppIdentifier: nil];
+		[[self class] sendFinishedNotificationForAppIdentifier: nil];
 	}
 	// be KVO friendly
 	[self willChangeValueForKey:@"listeningToRemote"];
@@ -320,13 +320,13 @@ cleanup:
 	}
 }
 
-- (void) removeNotifcationObserver {
+- (void) removeNotificationObserver {
 	[[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:FINISHED_USING_REMOTE_CONTROL_NOTIFICATION object:nil];
 }
 
 - (void) remoteControlAvailable:(NSNotification *)notification {
     (void)notification;
-	[self removeNotifcationObserver];
+	[self removeNotificationObserver];
 	[self startListening: self];
 }
 
diff --git a/apple_remote/source/RemoteControl.m b/apple_remote/source/RemoteControl.m
index 1f1b7f179350..9cf840527bd3 100644
--- a/apple_remote/source/RemoteControl.m
+++ b/apple_remote/source/RemoteControl.m
@@ -34,7 +34,7 @@
 // notification names that are being used to signal that an application wants to
 // have access to the remote control device or if the application has finished
 // using the remote control device
-NSString* REQUEST_FOR_REMOTE_CONTROL_NOTIFCATION     = @"mac.remotecontrols.RequestForRemoteControl";
+NSString* REQUEST_FOR_REMOTE_CONTROL_NOTIFICATION     = @"mac.remotecontrols.RequestForRemoteControl";
 NSString* FINISHED_USING_REMOTE_CONTROL_NOTIFICATION = @"mac.remotecontrols.FinishedUsingRemoteControl";
 
 // keys used in user objects for distributed notifications
@@ -132,14 +132,14 @@ NSString* kTargetApplicationIdentifier = @"TargetBundleIdentifier";
                                                      deliverImmediately:YES];
 }
 
-+ (void) sendFinishedNotifcationForAppIdentifier: (NSString*) identifier {
++ (void) sendFinishedNotificationForAppIdentifier: (NSString*) identifier {
     [self sendDistributedNotification:FINISHED_USING_REMOTE_CONTROL_NOTIFICATION targetBundleIdentifier:identifier];
 #ifdef DEBUG
-    NSLog( @"Apple RemoteControl: sendFinishedNotifcationForAppIdentifier ...");
+    NSLog( @"Apple RemoteControl: sendFinishedNotificationForAppIdentifier ...");
 #endif
 }
 + (void) sendRequestForRemoteControlNotification {
-    [self sendDistributedNotification:REQUEST_FOR_REMOTE_CONTROL_NOTIFCATION targetBundleIdentifier:nil];
+    [self sendDistributedNotification:REQUEST_FOR_REMOTE_CONTROL_NOTIFICATION targetBundleIdentifier:nil];
 #ifdef DEBUG
     NSLog( @"Apple RemoteControl: sendRequestForRemoteControlNotification ...");
 #endif
diff --git a/include/apple_remote/RemoteControl.h b/include/apple_remote/RemoteControl.h
index 0b943920e6ee..2d9c189b8e31 100644
--- a/include/apple_remote/RemoteControl.h
+++ b/include/apple_remote/RemoteControl.h
@@ -38,7 +38,7 @@
 // notification names that are being used to signal that an application wants to
 // have access to the remote control device or if the application has finished
 // using the remote control device
-extern NSString* REQUEST_FOR_REMOTE_CONTROL_NOTIFCATION;
+extern NSString* REQUEST_FOR_REMOTE_CONTROL_NOTIFICATION;
 extern NSString* FINISHED_USING_REMOTE_CONTROL_NOTIFICATION;
 
 // keys used in user objects for distributed notifications
@@ -106,7 +106,7 @@ SAL_DLLPUBLIC_EXPORT @interface RemoteControl : NSObject {
 - (BOOL) sendsEventForButtonIdentifier: (RemoteControlEventIdentifier) identifier;
 
 // sending of notifications between applications
-+ (void) sendFinishedNotifcationForAppIdentifier: (NSString*) identifier;
++ (void) sendFinishedNotificationForAppIdentifier: (NSString*) identifier;
 + (void) sendRequestForRemoteControlNotification;
 
 // name of the device


More information about the Libreoffice-commits mailing list