Fix typo in TRACK::GetEndY

This commit is contained in:
Marek Roszko 2021-01-31 15:43:12 -05:00
parent b05bf34b77
commit 3d45668354
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public:
void SetEndY( int aY ) { m_End.y = aY; }
int GetEndX() const { return m_End.x; }
int GetEndY() const { return m_End.x; }
int GetEndY() const { return m_End.y; }
/// Return the selected endpoint (start or end)
const wxPoint& GetEndPoint( ENDPOINT_T aEndPoint ) const