diff options
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/fontattributes.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/impfont.hxx | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/vcl/inc/fontattributes.hxx b/vcl/inc/fontattributes.hxx index 17eddc62f54b..cd534008a5f6 100644 --- a/vcl/inc/fontattributes.hxx +++ b/vcl/inc/fontattributes.hxx @@ -35,7 +35,7 @@ public: const OUString& GetStyleName() const { return maStyleName; } FontWeight GetWeight() const { return meWeight; } - FontItalic GetSlantType() const { return meItalic; } + FontItalic GetItalic() const { return meItalic; } FontPitch GetPitch() const { return mePitch; } FontWidth GetWidthType() const { return meWidthType; } rtl_TextEncoding GetCharSet() const { return meCharSet; } diff --git a/vcl/inc/impfont.hxx b/vcl/inc/impfont.hxx index 54b4cf8135aa..f9c006f516ad 100644 --- a/vcl/inc/impfont.hxx +++ b/vcl/inc/impfont.hxx @@ -45,8 +45,6 @@ public: FontWeight GetWeight() { if(meWeight==WEIGHT_DONTKNOW) AskConfig(); return meWeight; } FontWeight GetWeightNoAsk() const { return meWeight; } - FontItalic GetSlantType() { return GetItalic(); } - FontItalic GetSlantType() const { return GetItalicNoAsk(); } FontItalic GetItalic() { if(meItalic==ITALIC_DONTKNOW) AskConfig(); return meItalic; } FontItalic GetItalicNoAsk() const { return meItalic; } FontPitch GetPitch() { if(mePitch==PITCH_DONTKNOW) AskConfig(); return mePitch; } |