diff options
Diffstat (limited to 'src/Style.cxx')
| -rw-r--r-- | src/Style.cxx | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/Style.cxx b/src/Style.cxx index cf61eb222..40586b916 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -60,10 +60,10 @@ bool FontSpecification::operator<(const FontSpecification &other) const {  }  FontMeasurements::FontMeasurements() { -	Clear(); +	ClearMeasurements();  } -void FontMeasurements::Clear() { +void FontMeasurements::ClearMeasurements() {  	ascent = 1;  	descent = 1;  	capitalHeight = 1; @@ -140,7 +140,7 @@ void Style::Clear(ColourDesired fore_, ColourDesired back_, int size_,  	changeable = changeable_;  	hotspot = hotspot_;  	font.ClearFont(); -	FontMeasurements::Clear(); +	FontMeasurements::ClearMeasurements();  }  void Style::ClearTo(const Style &source) { | 
