OSXDragView: Get rid of uninitialized variable warning
This commit is contained in:
parent
96e8adbaae
commit
937326bf4f
|
@ -129,13 +129,13 @@ draggingSourceOperationMask
|
||||||
|
|
||||||
- (NSPoint)draggingLocation
|
- (NSPoint)draggingLocation
|
||||||
{
|
{
|
||||||
NSPoint point;
|
NSPoint point = NSMakePoint(0, 0);
|
||||||
return point;
|
return point;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSPoint)draggedImageLocation
|
- (NSPoint)draggedImageLocation
|
||||||
{
|
{
|
||||||
NSPoint point;
|
NSPoint point = NSMakePoint(0, 0);
|
||||||
return point;
|
return point;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue