Skip to content

Commit

Permalink
#3 - fixing conditional compiling terms, however part of functionalit…
Browse files Browse the repository at this point in the history
…y would be lost for FB2.1+
  • Loading branch information
Arioch authored and Arioch committed Jun 23, 2017
1 parent 22a841e commit 5218ba9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/uibase.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ procedure ADD_SPB_NUMERIC(var p: PAnsiChar; data: Integer);
isc_tpb_version3 = #3;
isc_tpb_consistency = #1;
isc_tpb_concurrency = #2;
{$IFNDEF FB_21UP}
{$IFNDEF FB21_UP}
isc_tpb_shared = #3;
isc_tpb_protected = #4;
isc_tpb_exclusive = #5;
Expand Down
4 changes: 2 additions & 2 deletions source/uiblib.pas
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ EUIBExceptionClass = class of EUIBError;
{ allows concurrent transactions to read and write shared data. }
tpConcurrency,
{ Concurrent, shared access of a specified table among all transactions. }
{$IFNDEF FB_21UP}
{$IFNDEF FB21_UP}
tpShared,
{ Concurrent, restricted access of a specified table. }
tpProtected,
Expand Down Expand Up @@ -1776,7 +1776,7 @@ function SQLUnQuote(const name: string): string;
tpc: array[TTransParam] of AnsiChar = (
isc_tpb_consistency,
isc_tpb_concurrency,
{$IFNDEF FB_21UP}
{$IFNDEF FB21_UP}
isc_tpb_shared,
isc_tpb_protected,
isc_tpb_exclusive,
Expand Down

0 comments on commit 5218ba9

Please sign in to comment.