diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-24 00:21:33 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-24 00:21:33 +0000 |
commit | b99460b47145de0ebbd1b9e6effe71cf91c056ec (patch) | |
tree | 226a496a0867d04c0d2774a89df4b0c14cf5d85a /src | |
parent | 88a9fd30446c4353d42b5a1ccd882e074c6d6c0e (diff) | |
download | usdx-b99460b47145de0ebbd1b9e6effe71cf91c056ec.tar.gz usdx-b99460b47145de0ebbd1b9e6effe71cf91c056ec.tar.xz usdx-b99460b47145de0ebbd1b9e6effe71cf91c056ec.zip |
removed "strict protected/private"
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2296 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/base/UFont.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/UFont.pas b/src/base/UFont.pas index 72b1d8d8..79873272 100644 --- a/src/base/UFont.pas +++ b/src/base/UFont.pas @@ -451,7 +451,7 @@ type * Freetype font face class. *} TFTFontFace = class - strict private + private fFilename: IPath; //**< filename of the font-file fFace: FT_Face; //**< Holds the height of the font fFontUnitScale: TPositionDbl; //**< FT font-units to pixel ratio @@ -544,7 +544,7 @@ type private procedure ResetIntern(); - strict protected + protected fFace: TFTFontFace; //**< Default font face fSize: integer; //**< Font base size (in pixels) fOutset: single; //**< size of outset extrusion (in pixels) |