OSXDragView: Get rid of uninitialized variable warning
This commit is contained in:
parent
96e8adbaae
commit
937326bf4f
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue