Remove unused m_crossHairPosition

This commit is contained in:
Marek Roszko 2021-06-15 21:25:27 -04:00
parent 21b869bd1f
commit 45c7c7c350
2 changed files with 0 additions and 13 deletions

View File

@ -47,17 +47,11 @@ void BASE_SCREEN::InitDataPoints( const wxSize& aPageSizeIU )
{
if( m_Center )
{
m_crossHairPosition.x = 0;
m_crossHairPosition.y = 0;
m_DrawOrg.x = -aPageSizeIU.x / 2;
m_DrawOrg.y = -aPageSizeIU.y / 2;
}
else
{
m_crossHairPosition.x = aPageSizeIU.x / 2;
m_crossHairPosition.y = aPageSizeIU.y / 2;
m_DrawOrg.x = 0;
m_DrawOrg.y = 0;
}

View File

@ -130,13 +130,6 @@ protected:
private:
bool m_flagModified; ///< Indicates current drawing has been modified.
/**
* The cross hair position in logical (drawing) units. The cross hair is not the cursor
* position. It is an addition indicator typically drawn on grid to indicate to the
* user where the current action will be performed.
*/
wxPoint m_crossHairPosition;
};
#endif // BASE_SCREEN_H