From b2ff6aa9382fa823353891237df556d15aa0f8a9 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sat, 22 Mar 2025 18:05:27 -0400 Subject: [PATCH] refactor: remove unused ArchMiscWindows::setIcons --- src/lib/arch/win32/ArchMiscWindows.cpp | 6 ------ src/lib/arch/win32/ArchMiscWindows.h | 6 ------ 2 files changed, 12 deletions(-) diff --git a/src/lib/arch/win32/ArchMiscWindows.cpp b/src/lib/arch/win32/ArchMiscWindows.cpp index 67dac3d93..6b966c679 100644 --- a/src/lib/arch/win32/ArchMiscWindows.cpp +++ b/src/lib/arch/win32/ArchMiscWindows.cpp @@ -71,12 +71,6 @@ void ArchMiscWindows::init() s_dialogs = new Dialogs; } -void ArchMiscWindows::setIcons(HICON largeIcon, HICON smallIcon) -{ - s_largeIcon = largeIcon; - s_smallIcon = smallIcon; -} - void ArchMiscWindows::getIcons(HICON &largeIcon, HICON &smallIcon) { largeIcon = s_largeIcon; diff --git a/src/lib/arch/win32/ArchMiscWindows.h b/src/lib/arch/win32/ArchMiscWindows.h index 809cb551d..3ee80441b 100644 --- a/src/lib/arch/win32/ArchMiscWindows.h +++ b/src/lib/arch/win32/ArchMiscWindows.h @@ -44,12 +44,6 @@ public: //! Delete memory static void cleanup(); - //! Set the application icons - /*! - Set the application icons. - */ - static void setIcons(HICON largeIcon, HICON smallIcon); - //! Get the application icons /*! Get the application icons.