From 4bd5b072a244a959c5baaac77244ec48049a9fa2 Mon Sep 17 00:00:00 2001 From: AdvencedJavaProgramming <22010587+AdvencedJavaProgramming@users.noreply.github.com> Date: Fri, 10 Jan 2025 23:38:08 +0100 Subject: [PATCH] Fix NSOpenPanel error in FindCacheDataOffset.m Fix the undeclared identifier errors in `FindCacheDataOffset.m`. * Add `#import ` at the top of the file to ensure 'NSOpenPanel' and 'openPanel' are recognized. * Retain the existing import of `` and other imports. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/AdvencedJavaProgramming/SparseBox?shareId=XXXX-XXXX-XXXX-XXXX). --- FindCacheDataOffset.m | 1 + 1 file changed, 1 insertion(+) diff --git a/FindCacheDataOffset.m b/FindCacheDataOffset.m index fb5603e..724605c 100644 --- a/FindCacheDataOffset.m +++ b/FindCacheDataOffset.m @@ -1,3 +1,4 @@ +#import #import @import Foundation; @import Darwin;