Revision: 29810
          http://sourceforge.net/p/bibdesk/svn/29810
Author:   hofman
Date:     2025-11-15 15:57:45 +0000 (Sat, 15 Nov 2025)
Log Message:
-----------
use type for local variable

Modified Paths:
--------------
    trunk/bibdesk/BDSKLinkedFile.m

Modified: trunk/bibdesk/BDSKLinkedFile.m
===================================================================
--- trunk/bibdesk/BDSKLinkedFile.m      2025-11-15 10:57:50 UTC (rev 29809)
+++ trunk/bibdesk/BDSKLinkedFile.m      2025-11-15 15:57:45 UTC (rev 29810)
@@ -534,7 +534,7 @@
     
     NSString *basePath = [aDelegate basePathForLinkedFile:self];
     NSString *relPath = basePath ? [aPath relativePathFromPath:basePath] : nil;
-    id anAlias = [BDSKAlias aliasWithPath:aPath basePath:basePath];
+    BDSKAlias *anAlias = [BDSKAlias aliasWithPath:aPath basePath:basePath];
     self = [self initWithAlias:anAlias relativePath:relPath 
delegate:aDelegate];
     if (self && basePath)
         [self updateFileRef];
@@ -781,7 +781,7 @@
     
     NSString *basePath = [aDelegate basePathForLinkedFile:self];
     NSString *relPath = basePath ? [aPath relativePathFromPath:basePath] : nil;
-    id anAlias = [aURL bookmarkDataWithOptions:0 
includingResourceValuesForKeys:nil relativeToURL:nil error:NULL];
+    NSData *anAlias = [aURL bookmarkDataWithOptions:0 
includingResourceValuesForKeys:nil relativeToURL:nil error:NULL];
     self = [self initWithAlias:anAlias relativePath:relPath 
delegate:aDelegate];
     if (self && basePath)
         [self updateFileURL];

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to