Skip to content

Commit

Permalink
OSXDragView: Get rid of uninitialized variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwoc committed Nov 19, 2019
1 parent 96e8adb commit 937326b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/platform/OSXDragView.m
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ @implementation OSXDragView

- (NSPoint)draggingLocation
{
NSPoint point;
NSPoint point = NSMakePoint(0, 0);
return point;
}

- (NSPoint)draggedImageLocation
{
NSPoint point;
NSPoint point = NSMakePoint(0, 0);
return point;
}

Expand Down

0 comments on commit 937326b

Please sign in to comment.