refactor: remove unused ArchMiscWindows::addDialog

This commit is contained in:
sithlord48
2025-03-22 19:05:24 -04:00
committed by Nick Bolton
parent 75e852d95f
commit 133545d03f
2 changed files with 0 additions and 8 deletions

View File

@ -256,11 +256,6 @@ ArchMiscWindows::readValueInt(HKEY key, const TCHAR *name)
return value;
}
void ArchMiscWindows::addDialog(HWND hwnd)
{
s_dialogs->insert(hwnd);
}
void ArchMiscWindows::removeDialog(HWND hwnd)
{
s_dialogs->erase(hwnd);

View File

@ -101,9 +101,6 @@ public:
//! Read a DWORD value from the registry
static DWORD readValueInt(HKEY, const TCHAR *name);
//! Add a dialog
static void addDialog(HWND);
//! Remove a dialog
static void removeDialog(HWND);