mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
LazReport: Make the code compile with DEFINE DebugLR. Issue #41485, patch by michalgw.
This commit is contained in:
parent
afe5864aaa
commit
15a32b17fc
@ -23,7 +23,10 @@ uses
|
||||
// LCL
|
||||
LCLType, LCLIntf, Controls, Forms, Dialogs, Menus, Graphics, Printers,
|
||||
// LazUtils
|
||||
LazFileUtils, LazUTF8, LazLoggerBase,
|
||||
LazFileUtils, LazUTF8,
|
||||
{$IFDEF DebugLR}
|
||||
LazLoggerBase,
|
||||
{$ENDIF}
|
||||
// IDEIntf
|
||||
PropEdits,
|
||||
// LazReport
|
||||
@ -2185,8 +2188,10 @@ begin
|
||||
try
|
||||
FHyp.BreakWord('lazreport');
|
||||
except
|
||||
{$IFDEF DebugLR}
|
||||
on E:EHyphenationException do
|
||||
DebugLn('Error: ', e.message,'. Hyphenation support will be disabled');
|
||||
{$ENDIF}
|
||||
end;
|
||||
end;
|
||||
|
||||
@ -12185,7 +12190,7 @@ begin
|
||||
end;
|
||||
|
||||
{$IFDEF DebugLR}
|
||||
DebugLn('TInterpretator.GetValue(',Name,') No Propinfo for Prop=',PropName,' Value=',dbgs(AValue));
|
||||
DebugLn('TInterpretator.GetValue(',Name,') No Propinfo for Prop=',PropName,' Value=',VarToStr(AValue));
|
||||
{$ENDIF}
|
||||
end
|
||||
else
|
||||
|
@ -2,12 +2,10 @@ unit lr_ngcanvas;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
{$DEFINE DEBUG}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Math, Types, LCLType, LCLProc, LazLoggerBase, Graphics, FileUtil,
|
||||
Classes, SysUtils, Math, Types, LCLType, LCLProc, Graphics, FileUtil,
|
||||
fpjson, jsonparser, FPimage, FPImgCanv, FPCanvas, FPWriteBMP, FPWritePNG,
|
||||
fpparsettf, EasyLazFreeType, LazFreeTypeFontCollection, LazFreeTypeFPImageDrawer;
|
||||
|
||||
|
@ -15,12 +15,13 @@ interface
|
||||
{$I LR_Vers.inc}
|
||||
|
||||
uses
|
||||
SysUtils, Classes, strutils, Variants, Graphics, Controls,
|
||||
SysUtils, Classes, Variants, Graphics, Controls,
|
||||
LR_DBRel, Forms, StdCtrls, ClipBrd, Menus, db,
|
||||
{$IFDEF WIN32}
|
||||
Windows,
|
||||
{$ENDIF}
|
||||
LCLType, LCLIntf, LConvEncoding, LazFileUtils, LazUTF8, LazLoggerBase;
|
||||
LCLType, LCLIntf, LConvEncoding, LazFileUtils, LazUTF8
|
||||
{$IFDEF DebugLR}, LazLoggerBase {$ENDIF};
|
||||
|
||||
type
|
||||
TUTF8Item=packed record
|
||||
|
@ -21,6 +21,9 @@ uses
|
||||
ExtCtrls, Buttons, StdCtrls, Menus,
|
||||
// LazUtils
|
||||
LazUTF8,
|
||||
{$IFDEF DebugLR}
|
||||
LazLoggerBase,
|
||||
{$ENDIF}
|
||||
// LazReport
|
||||
LR_Const,
|
||||
// Printers
|
||||
|
Loading…
Reference in New Issue
Block a user