Skip to content

Commit

Permalink
Set x64 flag for components. #20
Browse files Browse the repository at this point in the history
  • Loading branch information
bero committed Dec 7, 2024
1 parent cefda3a commit fcdbc95
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions Source/BoldCursorHandle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface
TBoldCursorHandle = class;

{ TBoldCursorHandle }
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldCursorHandle = class(TBoldAbstractListHandle)
private
fAutoFirst: Boolean;
Expand Down
1 change: 1 addition & 0 deletions Source/BoldDatabaseAdapterUniDAC.pas
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface
TBoldDatabaseAdapterUniDAC = class;

{ TBoldDatabaseAdapterUniDAC }
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldDatabaseAdapterUniDAC = class(TBoldAbstractDatabaseAdapter)
private
fBoldUniDACConnection: TBoldUniDACConnection;
Expand Down
1 change: 1 addition & 0 deletions Source/BoldDerivedHandle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface
TBoldDerivedHandle = class;

{---TBoldDerviedHandle---}
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldDerivedHandle = class(TBoldRootedHandle)
private
fOnDeriveAndSubscribe: TBoldHandleDeriveAndSubscribe;
Expand Down
1 change: 1 addition & 0 deletions Source/BoldExpressionHandle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ TBoldExpressionHandle = class;
TBoldExpressionHandleClass = class of TBoldExpressionHandle;

{---TBoldExpressionHandle---}
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldExpressionHandle = class(TBoldRootedHandle, IBoldOCLComponent)
function IBoldOCLComponent.GetContextType = GetStaticRootType;
private
Expand Down
1 change: 1 addition & 0 deletions Source/BoldExternalObjectSpaceEventHandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ EOSSConflict = class(EOSS)

TIdListArray = array of TBoldObjectIdList;

[ComponentPlatformsAttribute (pidWin32 or pidWin64)]
TBoldExternalObjectSpaceEventHandler = class(TBoldStringDequeuer)
private
fBoldSystemHandle: TBoldSystemHandle;
Expand Down
4 changes: 2 additions & 2 deletions Source/BoldExternalObjectSpaceEventHandlerReg.pas
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ procedure RegisterEditors;

procedure Register;
begin
RegisterComponentsOnPalette;
RegisterEditors;
RegisterComponentsOnPalette;
RegisterEditors;
end;

end.
Expand Down
1 change: 1 addition & 0 deletions Source/BoldFilteredHandle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ TBoldFilteredHandle = class;
TBoldElementFilter = function (Element: TBoldElement): Boolean of object;

{ TBoldFilter }
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldFilter = class(TBoldSubscribableComponentViaBoldElem)
private
FOnFilter: TBoldElementFilter;
Expand Down
1 change: 1 addition & 0 deletions Source/BoldSortedHandle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ TBoldComparer = class;
TBoldSortedHandle = class;

{ TBoldComparer }
[ComponentPlatforms(pidWin32 or pidWin64)]
TBoldComparer = class(TBoldSubscribableComponentViaBoldElem)
private
FOnCompare: TBoldElementCompare;
Expand Down

0 comments on commit fcdbc95

Please sign in to comment.