From 2637ecd5473c2291b0cc3a3b119c996a92d6ce13 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Mon, 20 Jul 2009 17:25:27 +0000 Subject: [PATCH] made some methods private. Those weren't used anywhere outside of the class git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31656 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/ServerFont.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/servers/app/ServerFont.h b/src/servers/app/ServerFont.h index 79624c69e0..68691f7297 100644 --- a/src/servers/app/ServerFont.h +++ b/src/servers/app/ServerFont.h @@ -112,10 +112,6 @@ class ServerFont { { return fStyle->CharMapCount(); } inline bool Hinting() const; - FT_Face GetTransformedFace(bool rotate, - bool shear) const; - void PutTransformedFace(FT_Face face) const; - status_t GetGlyphShapes(const char charArray[], int32 numChars, BShape *shapeArray[]) const; @@ -169,7 +165,10 @@ class ServerFont { protected: friend class FontStyle; - + FT_Face GetTransformedFace(bool rotate, + bool shear) const; + void PutTransformedFace(FT_Face face) const; + FontStyle* fStyle; float fSize; float fRotation;