Skip to content

Commit

Permalink
Merge pull request #1648 from elect86/patch-17
Browse files Browse the repository at this point in the history
Update FBXDocument.cpp, typo
  • Loading branch information
kimkulling committed Dec 20, 2017
2 parents 72edaf7 + 06179ce commit 95661e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/FBXDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -619,10 +619,10 @@ std::vector<const Connection*> Document::GetConnectionsBySourceSequenced(uint64_
}

// ------------------------------------------------------------------------------------------------
std::vector<const Connection*> Document::GetConnectionsBySourceSequenced(uint64_t dest, const char* classname) const
std::vector<const Connection*> Document::GetConnectionsBySourceSequenced(uint64_t src, const char* classname) const
{
const char* arr[] = {classname};
return GetConnectionsBySourceSequenced(dest, arr,1);
return GetConnectionsBySourceSequenced(src, arr,1);
}

// ------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 95661e8

Please sign in to comment.