Fix naming.

This commit is contained in:
Rene Gollent 2011-12-16 08:38:09 -05:00
parent ab214879a0
commit 973ec3b1ac
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ Architecture::CreateStackTrace(Team* team,
// attempt to continue building it from where it left off.
if (stackTrace->CountFrames() > 0) {
nextFrame = stackTrace->FrameAt(stackTrace->CountFrames() - 1);
cpuState = nextFrame->GetPreviousCpuState();
cpuState = nextFrame->PreviousCpuState();
}
while (cpuState != NULL) {

View File

@ -55,7 +55,7 @@ public:
target_addr_t InstructionPointer() const
{ return fInstructionPointer; }
CpuState* GetPreviousCpuState() const
CpuState* PreviousCpuState() const
{ return fPreviousCpuState; }
void SetPreviousCpuState(CpuState* state);