fix a typo in function name SGDeviceList::SenseCommRunning()

This commit is contained in:
Mamadou Babaei
2026-02-24 10:42:43 +01:00
parent e0fc5d17e9
commit 864509d0a5
8 changed files with 11 additions and 11 deletions
@@ -59,9 +59,9 @@ int32 FSGDeviceList::ActiveDevices()
return SGCoreImpl_FSGDeviceListImpl_ActiveDevices(); return SGCoreImpl_FSGDeviceListImpl_ActiveDevices();
} }
bool FSGDeviceList::SenseCommRunning() bool FSGDeviceList::SenseComRunning()
{ {
return SGCoreImpl_FSGDeviceListImpl_SenseCommRunning(); return SGCoreImpl_FSGDeviceListImpl_SenseComRunning();
} }
void FSGDeviceList::Dispose() void FSGDeviceList::Dispose()
@@ -64,7 +64,7 @@ public:
/** /**
* Returns true if the SenseCom program is running. * 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. * Clear the device list, and block any further attempt to add to it until ReInitialize is called.
@@ -57,7 +57,7 @@ int32 FSGDeviceListImpl::ActiveDevices()
return FDeviceListType::ActiveDevices(); return FDeviceListType::ActiveDevices();
} }
bool FSGDeviceListImpl::SenseCommRunning() bool FSGDeviceListImpl::SenseComRunning()
{ {
return FDeviceListType::SenseComRunning(); return FDeviceListType::SenseComRunning();
} }
@@ -1322,9 +1322,9 @@ int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices()
return FSGDeviceListImpl::ActiveDevices(); return FSGDeviceListImpl::ActiveDevices();
} }
bool SGCoreImpl_FSGDeviceListImpl_SenseCommRunning() bool SGCoreImpl_FSGDeviceListImpl_SenseComRunning()
{ {
return FSGDeviceListImpl::SenseCommRunning(); return FSGDeviceListImpl::SenseComRunning();
} }
void SGCoreImpl_FSGDeviceListImpl_Dispose() void SGCoreImpl_FSGDeviceListImpl_Dispose()
@@ -53,7 +53,7 @@ public:
public: public:
static int32 ActiveDevices(); static int32 ActiveDevices();
static bool SenseCommRunning(); static bool SenseComRunning();
static void Dispose(); static void Dispose();
@@ -680,7 +680,7 @@ SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceImpl_ToString(
SENSEGLOVECOREIMPL_PUBLIC_API int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices(); 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(); SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceListImpl_Dispose();
@@ -43,9 +43,9 @@ int32 USGDeviceListKismetLibrary::ActiveDevices()
return FSGDeviceList::ActiveDevices(); return FSGDeviceList::ActiveDevices();
} }
bool USGDeviceListKismetLibrary::SenseCommRunning() bool USGDeviceListKismetLibrary::SenseComRunning()
{ {
return FSGDeviceList::SenseCommRunning(); return FSGDeviceList::SenseComRunning();
} }
void USGDeviceListKismetLibrary::Dispose() void USGDeviceListKismetLibrary::Dispose()
@@ -66,7 +66,7 @@ public:
* Returns true if the SenseCom program is running. * Returns true if the SenseCom program is running.
*/ */
UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Device List") 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. * Clear the device list, and block any further attempt to add to it until ReInitialize is called.