diff --git a/v4/ctx_test2.cpp b/v4/ctx_test2.cpp index d1ca931..67cc471 100644 --- a/v4/ctx_test2.cpp +++ b/v4/ctx_test2.cpp @@ -7,7 +7,7 @@ std::string s(const char *str) { return std::string(str); } -std::string test_ctx_Controller_executeFunctions_set() { +std::string test_ctx_Controller_executeFunctions_registerFunction_set() { auto c = memory_createContext(); ctx_Controller ctrl(c); // Disable automatic invocation of executeFunctions. diff --git a/v4/ctx_test2.h b/v4/ctx_test2.h index 85a7114..4e372a0 100644 --- a/v4/ctx_test2.h +++ b/v4/ctx_test2.h @@ -3,7 +3,7 @@ #ifndef ctx_test_HEADER #define ctx_test_HEADER -std::string test_ctx_Controller_executeFunctions_set(); +std::string test_ctx_Controller_executeFunctions_registerFunction_set(); std::string test_ctx_Controller_processQueue(); std::string test_ctx_Controller_registerFieldCallback_match(); std::string test_ctx_Controller_registerFieldCallback_mismatch(); diff --git a/v4/ctx_test2.py b/v4/ctx_test2.py index cde26fd..74720c8 100644 --- a/v4/ctx_test2.py +++ b/v4/ctx_test2.py @@ -2,7 +2,7 @@ from ctx import * from memory import * from memory_Context import * -def ctx_test_Controller_executeFunctions_set( +def ctx_test_Controller_executeFunctions_registerFunction_set( ) -> str: c = memory_createContext() ctrl = ctx_Controller(c)