mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
static
This commit is contained in:
@@ -173,7 +173,6 @@ private:
|
||||
const HINSTANCE m_hinstance{};
|
||||
|
||||
HWND m_window{};
|
||||
KeyboardInput m_keyboardInput{};
|
||||
std::unique_ptr<WindowMouseSnap> m_windowMouseSnapper{};
|
||||
WindowKeyboardSnap m_windowKeyboardSnapper{};
|
||||
WorkAreaConfiguration m_workAreaConfiguration;
|
||||
@@ -226,7 +225,7 @@ FancyZones::Run() noexcept
|
||||
return;
|
||||
}
|
||||
|
||||
if (!m_keyboardInput.Initialize(m_window))
|
||||
if (!KeyboardInput::Initialize(m_window))
|
||||
{
|
||||
Logger::critical(L"Failed to register raw input device");
|
||||
return;
|
||||
|
||||
@@ -6,5 +6,5 @@ public:
|
||||
KeyboardInput() = default;
|
||||
~KeyboardInput() = default;
|
||||
|
||||
bool Initialize(HWND window);
|
||||
static bool Initialize(HWND window);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user