plugins/lockdevice: Remove unnecessary MSVC specific pragma directive

Fixes the following compiler warning with mingw-w64 toolchain:
    
    lockdeviceplugin-win.cpp:18: warning: ignoring '#pragma comment ' [-Wunknown-pragmas]
       18 | #pragma comment(lib, "user32.lib")
This commit is contained in:
Biswapriyo Nath 2024-10-08 15:46:11 +00:00 committed by Albert Vaca Cintora
parent f2f1b43d4c
commit 2310f7ce76

View file

@ -15,7 +15,6 @@
#include <dbushelper.h> #include <dbushelper.h>
#include <Windows.h> #include <Windows.h>
#pragma comment(lib, "user32.lib")
K_PLUGIN_CLASS_WITH_JSON(LockDevicePlugin, "kdeconnect_lockdevice.json") K_PLUGIN_CLASS_WITH_JSON(LockDevicePlugin, "kdeconnect_lockdevice.json")