aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDotExporter.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-05-09 15:19:40 +0000
committerstuconnolly <stuart02@gmail.com>2012-05-09 15:19:40 +0000
commitafbd3852fa962b3b4399b83ba33295c7621d04a8 (patch)
tree85644bdcb5091955483e67e88308e5c535bb6248 /Source/SPDotExporter.m
parent9131db394c46f10260fcec1a1df5216b140e2bc2 (diff)
downloadsequelpro-afbd3852fa962b3b4399b83ba33295c7621d04a8.tar.gz
sequelpro-afbd3852fa962b3b4399b83ba33295c7621d04a8.tar.bz2
sequelpro-afbd3852fa962b3b4399b83ba33295c7621d04a8.zip
Fix more gcc warnings.
Diffstat (limited to 'Source/SPDotExporter.m')
-rw-r--r--Source/SPDotExporter.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPDotExporter.m b/Source/SPDotExporter.m
index cd00b61f..856218d8 100644
--- a/Source/SPDotExporter.m
+++ b/Source/SPDotExporter.m
@@ -184,7 +184,7 @@
}
// Update progress
- NSInteger progress = (i * ([self exportMaxProgress] / [[self dotExportTables] count]));
+ double progress = (i * ([self exportMaxProgress] / [[self dotExportTables] count]));
[self setExportProgressValue:progress];
[delegate performSelectorOnMainThread:@selector(dotExportProcessProgressUpdated:) withObject:self waitUntilDone:NO];