summaryrefslogtreecommitdiff
path: root/vcl/source/font/fontselect.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/font/fontselect.cxx')
-rw-r--r--vcl/source/font/fontselect.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/font/fontselect.cxx b/vcl/source/font/fontselect.cxx
index 09fb90e8b15f..b592c71670a2 100644
--- a/vcl/source/font/fontselect.cxx
+++ b/vcl/source/font/fontselect.cxx
@@ -46,12 +46,12 @@ FontSelectPattern::FontSelectPattern( const vcl::Font& rFont,
rFont.GetFontAttributes( *this );
// normalize orientation between 0 and 3600
- if( mnOrientation < Degree10(0) || mnOrientation >= Degree10(3600) )
+ if( mnOrientation < 0_deg10 || mnOrientation >= 3600_deg10 )
{
- if( mnOrientation >= Degree10(0) )
- mnOrientation %= Degree10(3600);
+ if( mnOrientation >= 0_deg10 )
+ mnOrientation %= 3600_deg10;
else
- mnOrientation = Degree10(3600) - (-mnOrientation % Degree10(3600));
+ mnOrientation = 3600_deg10 - (-mnOrientation % 3600_deg10);
}
// normalize width and height