aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPGeometryDataView.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-10-19 23:37:15 +0000
committerstuconnolly <stuart02@gmail.com>2010-10-19 23:37:15 +0000
commitb2461e0658f6deebf2b4a24e261fadb99f5125c6 (patch)
treefea57ce1afb8986d4b20c2abfd27ebd4b6ca36d5 /Source/SPGeometryDataView.m
parent10990abb16783d89e5314549883fc1e5acc2e407 (diff)
downloadsequelpro-b2461e0658f6deebf2b4a24e261fadb99f5125c6.tar.gz
sequelpro-b2461e0658f6deebf2b4a24e261fadb99f5125c6.tar.bz2
sequelpro-b2461e0658f6deebf2b4a24e261fadb99f5125c6.zip
Tidy up.
Diffstat (limited to 'Source/SPGeometryDataView.m')
-rw-r--r--Source/SPGeometryDataView.m3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/SPGeometryDataView.m b/Source/SPGeometryDataView.m
index 61dc6f25..10cf5b4a 100644
--- a/Source/SPGeometryDataView.m
+++ b/Source/SPGeometryDataView.m
@@ -290,7 +290,6 @@
*/
- (NSPoint)_normalizePoint:(NSPoint)aPoint
{
-
aPoint.x*=zoom_factor;
aPoint.y*=zoom_factor;
aPoint.x-=x_min;
@@ -305,14 +304,12 @@
*/
- (void)_drawPoint:(NSPoint)aPoint
{
-
NSBezierPath *circlePath = [NSBezierPath bezierPath];
[circlePath appendBezierPathWithOvalInRect:NSMakeRect(aPoint.x-5,aPoint.y-5,10,10)];
[pointStrokeColor setStroke];
[pointFillColor setFill];
[circlePath stroke];
[circlePath fill];
-
}
@end