Fixes compilation of Lazarus with FPC trunk due to the fix to spelling mistake in TFPCustomFont

git-svn-id: trunk@39870 -
This commit is contained in:
sekelsenmat 2013-01-17 09:17:52 +00:00
parent 154caf4c01
commit f758bdf235
4 changed files with 4 additions and 4 deletions

View File

@ -382,7 +382,7 @@ type
property Bold; // only windows
property Italic; // only windows
property Underline; // not supported
property StrikeTrough; // not supported
//property StrikeThrough; // not supported, uncomment when FPC 2.6.2+ only is supported
end;
{ TAggFPPath }

View File

@ -1198,7 +1198,7 @@ begin
ADest.Font.Bold := Font.Bold;
ADest.Font.Italic := Font.Italic;
ADest.Font.Underline := Font.Underline;
ADest.Font.StrikeTrough := Font.StrikeThrough;
//ADest.Font.StrikeThrough := Font.StrikeThrough; uncomment when FPC 2.6.2+ only is supported
{$ifdef USE_LCL_CANVAS}
ALCLDest.Font.Orientation := Round(Font.Orientation * 16);
{$endif}

View File

@ -4090,7 +4090,7 @@ begin
TM.tmBreakChar := '?';
TM.tmItalic := Ord(lFont.Italic);
TM.tmUnderlined := Ord(lFont.Underline);
TM.tmStruckOut := Ord(lFont.StrikeTrough);
//TM.tmStruckOut := Ord(lFont.StrikeThrough); uncomment when FPC 2.6.2+ only is supported
{ Defaults to a TrueType font.
Note that the meaning of the FIXED_PITCH constant is the opposite of

View File

@ -761,7 +761,7 @@ begin
Font.Bold := AFont.Bold;
Font.Italic := AFont.Italic;
Font.Underline := AFont.Underline;
Font.StrikeTrough := AFont.StrikeTrough;
//Font.StrikeThrough := AFont.StrikeThrough; uncomment when FPC 2.6.2+ only is supported
end;
{ TFPWindowsSharpInterpolation }