diff --git a/src/common/interop/Constants.cpp b/src/common/interop/Constants.cpp index bbbf50bc5d..81977d1a78 100644 --- a/src/common/interop/Constants.cpp +++ b/src/common/interop/Constants.cpp @@ -195,26 +195,10 @@ namespace winrt::PowerToys::Interop::implementation { return CommonSharedConstants::CMDPAL_SHOW_EVENT; } - hstring Constants::ShowPowerDisplayEvent() - { - return CommonSharedConstants::SHOW_POWER_DISPLAY_EVENT; - } - hstring Constants::TerminatePowerDisplayEvent() - { - return CommonSharedConstants::TERMINATE_POWER_DISPLAY_EVENT; - } hstring Constants::RefreshPowerDisplayMonitorsEvent() { return CommonSharedConstants::REFRESH_POWER_DISPLAY_MONITORS_EVENT; } - hstring Constants::SettingsUpdatedPowerDisplayEvent() - { - return CommonSharedConstants::SETTINGS_UPDATED_POWER_DISPLAY_EVENT; - } - hstring Constants::ApplyColorTemperaturePowerDisplayEvent() - { - return CommonSharedConstants::APPLY_COLOR_TEMPERATURE_POWER_DISPLAY_EVENT; - } hstring Constants::ApplyProfilePowerDisplayEvent() { return CommonSharedConstants::APPLY_PROFILE_POWER_DISPLAY_EVENT; diff --git a/src/common/interop/Constants.h b/src/common/interop/Constants.h index 4d2b52f70a..6814afb048 100644 --- a/src/common/interop/Constants.h +++ b/src/common/interop/Constants.h @@ -52,11 +52,7 @@ namespace winrt::PowerToys::Interop::implementation static hstring WorkspacesHotkeyEvent(); static hstring PowerToysRunnerTerminateSettingsEvent(); static hstring ShowCmdPalEvent(); - static hstring ShowPowerDisplayEvent(); - static hstring TerminatePowerDisplayEvent(); static hstring RefreshPowerDisplayMonitorsEvent(); - static hstring SettingsUpdatedPowerDisplayEvent(); - static hstring ApplyColorTemperaturePowerDisplayEvent(); static hstring ApplyProfilePowerDisplayEvent(); }; } diff --git a/src/common/interop/Constants.idl b/src/common/interop/Constants.idl index ac0ffcd2f2..8b47c6a090 100644 --- a/src/common/interop/Constants.idl +++ b/src/common/interop/Constants.idl @@ -49,11 +49,7 @@ namespace PowerToys static String WorkspacesHotkeyEvent(); static String PowerToysRunnerTerminateSettingsEvent(); static String ShowCmdPalEvent(); - static String ShowPowerDisplayEvent(); - static String TerminatePowerDisplayEvent(); static String RefreshPowerDisplayMonitorsEvent(); - static String SettingsUpdatedPowerDisplayEvent(); - static String ApplyColorTemperaturePowerDisplayEvent(); static String ApplyProfilePowerDisplayEvent(); } }