From f372ccd2b8742fc753f654a426c9f3fb303cff0c Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 13 Nov 2025 18:52:39 -0500 Subject: [PATCH] refactor: only include the ISO639Table with X11 support enabled --- src/lib/deskflow/unix/ISO639Table.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/deskflow/unix/ISO639Table.h b/src/lib/deskflow/unix/ISO639Table.h index 8a292e768..611e42e04 100644 --- a/src/lib/deskflow/unix/ISO639Table.h +++ b/src/lib/deskflow/unix/ISO639Table.h @@ -7,6 +7,8 @@ #pragma once +#if WINAPI_XWINDOWS + #include #include // copy from @@ -66,3 +68,5 @@ const std::vector> ISO_Table = { std::make_pair("wln", "wa"), std::make_pair("wol", "wo"), std::make_pair("xho", "xh"), std::make_pair("yid", "yi"), std::make_pair("yor", "yo"), std::make_pair("zha", "za"), std::make_pair("zho", "zh"), std::make_pair("zul", "zu"), }; + +#endif