diff options
Diffstat (limited to 'vcl/osx/DropTarget.cxx')
-rw-r--r-- | vcl/osx/DropTarget.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/osx/DropTarget.cxx b/vcl/osx/DropTarget.cxx index e8179a9ababa..7ee0f5b48e1e 100644 --- a/vcl/osx/DropTarget.cxx +++ b/vcl/osx/DropTarget.cxx @@ -264,17 +264,9 @@ NSDragOperation DropTarget::draggingUpdated(id sender) } if (dragOp == NSDragOperationNone) -#if MAC_OS_X_VERSION_MAX_ALLOWED < 1060 - SetThemeCursor(kThemeNotAllowedCursor); -#else [[NSCursor operationNotAllowedCursor] set]; -#endif else if (dragOp == NSDragOperationCopy) -#if MAC_OS_X_VERSION_MAX_ALLOWED < 1060 - SetThemeCursor(kThemeCopyArrowCursor); -#else [[NSCursor dragCopyCursor] set]; -#endif else [[NSCursor arrowCursor] set]; |