OSXDragView: Get rid of uninitialized variable warning

This commit is contained in:
Daniel Seither 2019-11-19 12:04:29 +01:00
parent 96e8adbaae
commit 937326bf4f
1 changed files with 2 additions and 2 deletions

View File

@ -129,13 +129,13 @@ draggingSourceOperationMask
- (NSPoint)draggingLocation
{
NSPoint point;
NSPoint point = NSMakePoint(0, 0);
return point;
}
- (NSPoint)draggedImageLocation
{
NSPoint point;
NSPoint point = NSMakePoint(0, 0);
return point;
}