diff options
Diffstat (limited to 'vcl/osx/DropTarget.cxx')
-rw-r--r-- | vcl/osx/DropTarget.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/DropTarget.cxx b/vcl/osx/DropTarget.cxx index 9ad57085e35c..ebaa0a97fb40 100644 --- a/vcl/osx/DropTarget.cxx +++ b/vcl/osx/DropTarget.cxx @@ -262,7 +262,7 @@ NSDragOperation DropTarget::draggingUpdated(id sender) fire_dragOver(dtde); // drag over callbacks likely have rendered something - [mView setNeedsDisplay: TRUE]; + [mView setNeedsDisplay: true]; dragOp = OfficeToSystemDragActions(mSelectedDropAction); @@ -290,7 +290,7 @@ void DropTarget::draggingExited(id /*sender*/) BOOL DropTarget::prepareForDragOperation() { - return 1; + return true; } BOOL DropTarget::performDragOperation() |