]> granicus.if.org Git - transmission/commitdiff
Take an int instead of an NSInteger for the Bonjour port
authorMitchell Livingston <livings124@transmissionbt.com>
Sun, 9 Sep 2012 12:26:18 +0000 (12:26 +0000)
committerMitchell Livingston <livings124@transmissionbt.com>
Sun, 9 Sep 2012 12:26:18 +0000 (12:26 +0000)
macosx/BonjourController.h
macosx/BonjourController.m
macosx/Controller.m

index 6d81406182de31a4c9210cccffd871d0963887b7..66d044f4ab47f435c50ca1364fada303ef5f55c8 100644 (file)
@@ -31,7 +31,7 @@
 
 + (BonjourController *) defaultController;
 
-- (void) startWithPort: (NSInteger) port;
+- (void) startWithPort: (int) port;
 - (void) stop;
 
 @end
index bf5dd2e3148aad50d5705ec29c028d09699563b5..6a9f8cd2ff1d98192e8692227e990593200fcbf3 100644 (file)
@@ -45,7 +45,7 @@ BonjourController * fDefaultController = nil;
     [super dealloc];
 }
 
-- (void) startWithPort: (NSInteger) port
+- (void) startWithPort: (int) port
 {
     [self stop];
     
index 097236db604ee6e5989e5364dc566da912d78959..b55e611c5851a755db97d5cdebb2278b15e78657 100644 (file)
@@ -1962,7 +1962,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
         
         NSString * location = [torrent dataLocation];
         
-        NSString *notificationTitle = NSLocalizedString(@"Download Complete", "notification title");
+        NSString * notificationTitle = NSLocalizedString(@"Download Complete", "notification title");
         if ([NSApp isOnMountainLionOrBetter])
         {
             NSUserNotification * notification = [[NSUserNotificationMtLion alloc] init];
@@ -2028,7 +2028,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
     
     NSString * location = [torrent dataLocation];
     
-    NSString *notificationTitle = NSLocalizedString(@"Seeding Complete", "notification title");
+    NSString * notificationTitle = NSLocalizedString(@"Seeding Complete", "notification title");
     if ([NSApp isOnMountainLionOrBetter])
     {
         NSUserNotification * notification = [[NSUserNotificationMtLion alloc] init];
@@ -2967,7 +2967,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
             case TR_PARSE_OK:
                 [self openFiles: [NSArray arrayWithObject: fullFile] addType: ADD_AUTO forcePath: nil];
                 
-                NSString *notificationTitle = NSLocalizedString(@"Torrent File Auto Added", "notification title");
+                NSString * notificationTitle = NSLocalizedString(@"Torrent File Auto Added", "notification title");
                 if ([NSApp isOnMountainLionOrBetter])
                 {
                     NSUserNotification* notification = [[NSUserNotificationMtLion alloc] init];