Make some member functions const

This commit is contained in:
Paul Cornett
2021-03-17 09:44:48 -07:00
parent 34473971bb
commit b5d4c6068e
13 changed files with 34 additions and 34 deletions

View File

@@ -55,7 +55,7 @@ public:
void SetDC(wxDC *dc, double pixel_scale, double font_scale);
wxDC *GetDC() {return m_DC;}
double GetPixelScale() {return m_PixelScale;}
double GetPixelScale() const { return m_PixelScale; }
int GetCharHeight() const {return m_CharHeight;}
int GetCharWidth() const {return m_CharWidth;}