diff --git a/plugins/windows/CMakeLists.txt b/plugins/windows/CMakeLists.txt index effbab828..01bcaecfb 100644 --- a/plugins/windows/CMakeLists.txt +++ b/plugins/windows/CMakeLists.txt @@ -13,7 +13,6 @@ if (WIN32) source/content/ui_items.cpp source/content/settings_entries.cpp - source/content/providers.cpp INCLUDES include ) diff --git a/plugins/windows/source/content/providers.cpp b/plugins/windows/source/content/providers.cpp deleted file mode 100644 index 9aecba9d1..000000000 --- a/plugins/windows/source/content/providers.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include - -namespace hex::plugin::windows { - - void registerProviders() { - } - -} diff --git a/plugins/windows/source/plugin_windows.cpp b/plugins/windows/source/plugin_windows.cpp index 60c9bb94b..9480deeab 100644 --- a/plugins/windows/source/plugin_windows.cpp +++ b/plugins/windows/source/plugin_windows.cpp @@ -18,7 +18,6 @@ namespace hex::plugin::windows { void addFooterItems(); void addTitleBarButtons(); void registerSettings(); - void registerProviders(); } static void detectSystemTheme() { @@ -70,7 +69,6 @@ IMHEX_PLUGIN_SETUP("Windows", "WerWolv", "Windows-only features") { addFooterItems(); registerSettings(); - registerProviders(); detectSystemTheme(); checkBorderlessWindowOverride();