Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions QRCodeGenLib/src/Include/QRCodeGenLib.inc
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
{$DEFINE VCL_OR_LCL}
{$ENDIF VCL}

// XE and Above
{$IF CompilerVersion >= 22.0}
{$DEFINE DELPHIXE_UP}
{$IFEND}

{$ENDIF}

{========================== Common Compiler Settings ==========================}
Expand Down
28 changes: 0 additions & 28 deletions QRCodeGenLib/src/Utils/QlpQRCodeGenLibTypes.pas
Original file line number Diff line number Diff line change
Expand Up @@ -42,33 +42,6 @@ ENullReferenceQRCodeGenLibException = class(EQRCodeGenLibException);
/// </summary>
TQRCodeGenLibGenericArray<T> = array of T;

{$IFDEF DELPHIXE_UP}
/// <summary>
/// Represents a dynamic array of Int32.
/// </summary>
TQRCodeGenLibInt32Array = TArray<Int32>;

/// <summary>
/// Represents a dynamic array of Boolean.
/// </summary>
TQRCodeGenLibBooleanArray = TArray<Boolean>;

/// <summary>
/// Represents a dynamic array of String.
/// </summary>
TQRCodeGenLibStringArray = TArray<String>;

/// <summary>
/// Represents a dynamic array of array of Byte.
/// </summary>
TQRCodeGenLibMatrixByteArray = TArray<TQRCodeGenLibByteArray>;

/// <summary>
/// Represents a dynamic array of array of Int32.
/// </summary>
TQRCodeGenLibMatrixInt32Array = TArray<TQRCodeGenLibInt32Array>;

{$ELSE}
/// <summary>
/// Represents a dynamic array of Int32.
/// </summary>
Expand All @@ -94,7 +67,6 @@ ENullReferenceQRCodeGenLibException = class(EQRCodeGenLibException);
/// </summary>
TQRCodeGenLibMatrixInt32Array = array of TQRCodeGenLibInt32Array;

{$ENDIF DELPHIXE_UP}
TQRCodeGenLibColor =
{$IF DEFINED(VCL_OR_LCL)}TColor{$ELSEIF DEFINED(FCL)}TFPColor{$ELSEIF DEFINED(FMX)}TAlphaColor{$IFEND VCL_OR_LCL};
{$IFDEF FCL}
Expand Down