diff options
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/function.cpp b/function.cpp index 2a3e333f..66fd870c 100644 --- a/function.cpp +++ b/function.cpp @@ -246,15 +246,15 @@ void Function::SetCommentForAddress(uint64_t addr, const string& comment) } -void Function::AddUserCodeRef(Architecture* fromArch, uint64_t fromAddr, uint64_t toAddr) +void Function::AddUserCodeReference(Architecture* fromArch, uint64_t fromAddr, uint64_t toAddr) { - BNAddUserCodeRef(m_object, fromArch->GetObject(), fromAddr, toAddr); + BNAddUserCodeReference(m_object, fromArch->GetObject(), fromAddr, toAddr); } -void Function::RemoveUserCodeRef(Architecture* fromArch, uint64_t fromAddr, uint64_t toAddr) +void Function::RemoveUserCodeReference(Architecture* fromArch, uint64_t fromAddr, uint64_t toAddr) { - BNRemoveUserCodeRef(m_object, fromArch->GetObject(), fromAddr, toAddr); + BNRemoveUserCodeReference(m_object, fromArch->GetObject(), fromAddr, toAddr); } |
