From 864509d0a578144e9a29b844df70a123c79191de Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Wed, 2 Jul 2025 16:15:10 +0200 Subject: [PATCH] fix a typo in function name SGDeviceList::SenseCommRunning() --- Source/SenseGloveCore/Private/SGCore/SGDeviceList.cpp | 4 ++-- Source/SenseGloveCore/Public/SGCore/SGDeviceList.h | 2 +- .../Private/SGCoreImpl/SGDeviceListImpl.cpp | 2 +- .../Private/SGCoreImpl/SGExportedFunctions.cpp | 4 ++-- .../SenseGloveCoreImpl/Public/SGCoreImpl/SGDeviceListImpl.h | 2 +- .../Public/SGCoreImpl/SGExportedFunctions.h | 2 +- .../Private/SGCoreKismet/SGDeviceListKismetLibrary.cpp | 4 ++-- .../Public/SGCoreKismet/SGDeviceListKismetLibrary.h | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Source/SenseGloveCore/Private/SGCore/SGDeviceList.cpp b/Source/SenseGloveCore/Private/SGCore/SGDeviceList.cpp index 5ab76d03..18d2771a 100644 --- a/Source/SenseGloveCore/Private/SGCore/SGDeviceList.cpp +++ b/Source/SenseGloveCore/Private/SGCore/SGDeviceList.cpp @@ -59,9 +59,9 @@ int32 FSGDeviceList::ActiveDevices() return SGCoreImpl_FSGDeviceListImpl_ActiveDevices(); } -bool FSGDeviceList::SenseCommRunning() +bool FSGDeviceList::SenseComRunning() { - return SGCoreImpl_FSGDeviceListImpl_SenseCommRunning(); + return SGCoreImpl_FSGDeviceListImpl_SenseComRunning(); } void FSGDeviceList::Dispose() diff --git a/Source/SenseGloveCore/Public/SGCore/SGDeviceList.h b/Source/SenseGloveCore/Public/SGCore/SGDeviceList.h index 8eb90f5e..f2e20b61 100644 --- a/Source/SenseGloveCore/Public/SGCore/SGDeviceList.h +++ b/Source/SenseGloveCore/Public/SGCore/SGDeviceList.h @@ -64,7 +64,7 @@ public: /** * Returns true if the SenseCom program is running. */ - static bool SenseCommRunning(); + static bool SenseComRunning(); /** * Clear the device list, and block any further attempt to add to it until ReInitialize is called. diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGDeviceListImpl.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGDeviceListImpl.cpp index 516cc3e6..62cb742e 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGDeviceListImpl.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGDeviceListImpl.cpp @@ -57,7 +57,7 @@ int32 FSGDeviceListImpl::ActiveDevices() return FDeviceListType::ActiveDevices(); } -bool FSGDeviceListImpl::SenseCommRunning() +bool FSGDeviceListImpl::SenseComRunning() { return FDeviceListType::SenseComRunning(); } diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp index 14bd54cb..ffee3bd8 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGExportedFunctions.cpp @@ -1322,9 +1322,9 @@ int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices() return FSGDeviceListImpl::ActiveDevices(); } -bool SGCoreImpl_FSGDeviceListImpl_SenseCommRunning() +bool SGCoreImpl_FSGDeviceListImpl_SenseComRunning() { - return FSGDeviceListImpl::SenseCommRunning(); + return FSGDeviceListImpl::SenseComRunning(); } void SGCoreImpl_FSGDeviceListImpl_Dispose() diff --git a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGDeviceListImpl.h b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGDeviceListImpl.h index d37a1271..46f8b033 100644 --- a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGDeviceListImpl.h +++ b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGDeviceListImpl.h @@ -53,7 +53,7 @@ public: public: static int32 ActiveDevices(); - static bool SenseCommRunning(); + static bool SenseComRunning(); static void Dispose(); diff --git a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h index da6b19e5..8fe71d6e 100644 --- a/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h +++ b/Source/SenseGloveCoreImpl/Public/SGCoreImpl/SGExportedFunctions.h @@ -680,7 +680,7 @@ SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceImpl_ToString( SENSEGLOVECOREIMPL_PUBLIC_API int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices(); -SENSEGLOVECOREIMPL_PUBLIC_API bool SGCoreImpl_FSGDeviceListImpl_SenseCommRunning(); +SENSEGLOVECOREIMPL_PUBLIC_API bool SGCoreImpl_FSGDeviceListImpl_SenseComRunning(); SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceListImpl_Dispose(); diff --git a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGDeviceListKismetLibrary.cpp b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGDeviceListKismetLibrary.cpp index df80bf43..a297dc33 100644 --- a/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGDeviceListKismetLibrary.cpp +++ b/Source/SenseGloveCoreKismet/Private/SGCoreKismet/SGDeviceListKismetLibrary.cpp @@ -43,9 +43,9 @@ int32 USGDeviceListKismetLibrary::ActiveDevices() return FSGDeviceList::ActiveDevices(); } -bool USGDeviceListKismetLibrary::SenseCommRunning() +bool USGDeviceListKismetLibrary::SenseComRunning() { - return FSGDeviceList::SenseCommRunning(); + return FSGDeviceList::SenseComRunning(); } void USGDeviceListKismetLibrary::Dispose() diff --git a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGDeviceListKismetLibrary.h b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGDeviceListKismetLibrary.h index 468ce8d7..269a75de 100644 --- a/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGDeviceListKismetLibrary.h +++ b/Source/SenseGloveCoreKismet/Public/SGCoreKismet/SGDeviceListKismetLibrary.h @@ -66,7 +66,7 @@ public: * Returns true if the SenseCom program is running. */ UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Device List") - static bool SenseCommRunning(); + static bool SenseComRunning(); /** * Clear the device list, and block any further attempt to add to it until ReInitialize is called.