From c5cab0adbc35d6e84d0da2bd68b1fe300dca2240 Mon Sep 17 00:00:00 2001 From: gmh <13917777+gmh5225@users.noreply.github.com> Date: Sun, 3 Dec 2023 21:19:22 +0800 Subject: [PATCH] Fix errors in clang --- SystemExplorer/Interfaces.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SystemExplorer/Interfaces.h b/SystemExplorer/Interfaces.h index 4bc3863..9c9a84a 100644 --- a/SystemExplorer/Interfaces.h +++ b/SystemExplorer/Interfaces.h @@ -12,8 +12,8 @@ struct IMainFrame { virtual BOOL TrackPopupMenu(HMENU hMenu, HWND hWnd, POINT* pt = nullptr, UINT flags = 0) = 0; virtual HIMAGELIST GetImageList() = 0; virtual int GetIconIndexByType(PCWSTR type) const = 0; - virtual void ShowAllHandles(PCWSTR typename) = 0; - virtual void ShowAllObjects(PCWSTR typename) = 0; + virtual void ShowAllHandles(PCWSTR type) = 0; + virtual void ShowAllObjects(PCWSTR type) = 0; virtual CUpdateUIBase* GetUpdateUI() = 0; virtual CFont& GetMonoFont() = 0; virtual LRESULT SendFrameMessage(UINT msg, WPARAM wParam, LPARAM lParam) = 0;