debugger: Fix Assemble Opcode functionality

For some reason it was working in wx2.8 with a GetLabel(). Strange that.
This commit is contained in:
Jonathan Li 2015-08-19 18:13:03 +01:00
parent b55d6539b5
commit 70990002d8
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ public:
textControl->SetFocus();
textControl->SetFocusFromKbd();
}
wxString getText() { return textControl->GetLabel(); }
wxString getText() { return textControl->GetValue(); }
private:
NonAutoSelectTextCtrl* textControl;