diff options
Diffstat (limited to 'vcl/aqua/source/dtrans/DropTarget.cxx')
-rw-r--r-- | vcl/aqua/source/dtrans/DropTarget.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/aqua/source/dtrans/DropTarget.cxx b/vcl/aqua/source/dtrans/DropTarget.cxx index c928d66e156d..01a58b171b02 100644 --- a/vcl/aqua/source/dtrans/DropTarget.cxx +++ b/vcl/aqua/source/dtrans/DropTarget.cxx @@ -126,13 +126,13 @@ namespace /* private */ } --(MacOSBOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender +-(BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender { return mDropTarget->prepareForDragOperation(sender); } --(MacOSBOOL)performDragOperation:(id <NSDraggingInfo>)sender +-(BOOL)performDragOperation:(id <NSDraggingInfo>)sender { return mDropTarget->performDragOperation(sender); } @@ -321,13 +321,13 @@ NSDragOperation DropTarget::draggingUpdated(id sender) } - MacOSBOOL DropTarget::prepareForDragOperation(id sender) + BOOL DropTarget::prepareForDragOperation(id sender) { return 1; } -MacOSBOOL DropTarget::performDragOperation(id sender) +BOOL DropTarget::performDragOperation(id sender) { bool bSuccess = false; |