7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Fix conflict with Windows API

This commit is contained in:
Jon Evans 2025-01-07 19:22:00 -05:00
parent 5e4c5c969a
commit 31cce8930a

View File

@ -44,7 +44,7 @@ using google::protobuf::Empty;
API_HANDLER_COMMON::API_HANDLER_COMMON() :
API_HANDLER()
{
registerHandler<GetVersion, GetVersionResponse>( &API_HANDLER_COMMON::handleGetVersion );
registerHandler<commands::GetVersion, GetVersionResponse>( &API_HANDLER_COMMON::handleGetVersion );
registerHandler<GetKiCadBinaryPath, PathResponse>(
&API_HANDLER_COMMON::handleGetKiCadBinaryPath );
registerHandler<GetNetClasses, NetClassesResponse>( &API_HANDLER_COMMON::handleGetNetClasses );
@ -66,7 +66,7 @@ API_HANDLER_COMMON::API_HANDLER_COMMON() :
HANDLER_RESULT<GetVersionResponse> API_HANDLER_COMMON::handleGetVersion(
const HANDLER_CONTEXT<GetVersion>& )
const HANDLER_CONTEXT<commands::GetVersion>& )
{
GetVersionResponse reply;