We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef303f5 + 39a4111 commit 0cbbbfaCopy full SHA for 0cbbbfa
src/unrealsdk/unreal/structs/fscriptdelegate.cpp
@@ -15,8 +15,8 @@ UObject* FScriptDelegate::get_object(void) const {
15
return this->object;
16
}
17
18
-void FScriptDelegate::set_object(UObject* object) {
19
- this->object = object;
+void FScriptDelegate::set_object(UObject* obj) {
+ this->object = obj;
20
21
22
#else
src/unrealsdk/unreal/structs/fscriptdelegate.h
@@ -38,7 +38,7 @@ struct FScriptDelegate {
38
*
39
* @param object The object.
40
*/
41
- void set_object(UObject* object);
+ void set_object(UObject* obj);
42
43
/**
44
* @brief Tries to convert this delegate to a bound function.
0 commit comments