]> git.lyx.org Git - lyx.git/blobdiff - src/support/linkback/LinkBackServer.m
* layouttranslations.review - remove dupes
[lyx.git] / src / support / linkback / LinkBackServer.m
index bd6f90e837df71dbdf9c388e2c5cf7ea92fe0d6e..7a706da7535755873e64e12587e540cefce7d565 100644 (file)
@@ -83,8 +83,8 @@ BOOL LinkBackServerIsSupported(NSString* name, id supportedServers)
        if (supportedServers) {
                if ([supportedServers isKindOfClass: [NSArray class]]) {
                        idx = [supportedServers count] ;
-                       while((NO==ret) && (--idx >= 0)) {
-                               curServer = [supportedServers objectAtIndex: idx] ;
+                       while((NO==ret) && (idx > 0)) {
+                               curServer = [supportedServers objectAtIndex: --idx] ;
                                ret = [curServer isEqualToString: name] ;
                        }
                } else ret = [curServer isEqualToString: name] ; 
@@ -119,8 +119,8 @@ NSString* FindLinkBackServer(NSString* bundleIdentifier, NSString* serverName, N
        
        // find all .app bundles in the directory and test them.
        idx = (contents) ? [contents count] : 0 ;
-       while((nil==ret) && (--idx >= 0)) {
-               cpath = [contents objectAtIndex: idx] ;
+       while((nil==ret) && (idx > 0)) {
+               cpath = [contents objectAtIndex: --idx] ;
                
                if ([[cpath pathExtension] isEqualToString: @"app"]) {
                        cpath = [dir stringByAppendingPathComponent: cpath] ;
@@ -137,10 +137,10 @@ NSString* FindLinkBackServer(NSString* bundleIdentifier, NSString* serverName, N
        // if the app was not found, descend into non-app dirs.  only descend 4 levels to avoid taking forever.
        if ((nil==ret) && (level<4)) {
                idx = (contents) ? [contents count] : 0 ;
-               while((nil==ret) && (--idx >= 0)) {
+               while((nil==ret) && (idx > 0)) {
                        BOOL isdir ;
                        
-                       cpath = [contents objectAtIndex: idx] ;
+                       cpath = [contents objectAtIndex: --idx] ;
                        [fm fileExistsAtPath: cpath isDirectory: &isdir] ;
                        if (isdir && (![[cpath pathExtension] isEqualToString: @"app"])) {
                                cpath = [dir stringByAppendingPathComponent: cpath] ;
@@ -172,7 +172,7 @@ void LinkBackRunAppNotFoundPanel(NSString* appName, NSURL* url)
 
        title = [NSString stringWithFormat: title, appName] ;
        
-       result = NSRunCriticalAlertPanel(title, msg, ok, urlstr, nil) ;
+       result = NSRunCriticalAlertPanel(title, @"%@", ok, urlstr, nil, msg) ;
        if (NSAlertAlternateReturn == result) {
                [[NSWorkspace sharedWorkspace] openURL: url] ;
        }