aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExporter.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-10-08 13:50:38 +0200
committerMax <post@wickenrode.com>2015-10-08 13:50:38 +0200
commit1dedadcaba2cd474a251a24d893dc3b7b2a719a7 (patch)
tree6859a81f84293266e340517a49b0edd4318a5c8b /Source/SPExporter.m
parente3b8f07f34cd630bc285357d016e38c1926e362a (diff)
downloadsequelpro-1dedadcaba2cd474a251a24d893dc3b7b2a719a7.tar.gz
sequelpro-1dedadcaba2cd474a251a24d893dc3b7b2a719a7.tar.bz2
sequelpro-1dedadcaba2cd474a251a24d893dc3b7b2a719a7.zip
* Change a method name to fit standard naming conventions
* Remove a redundant ivar (and while we are at it, restructure some code) * And then there was this gem: (...) if (fileMode == O_RDONLY) { int i, c; char bzbuf[4]; const char *charFileMode = fileMode == O_WRONLY ? "wb" : "rb"; (...)
Diffstat (limited to 'Source/SPExporter.m')
-rw-r--r--Source/SPExporter.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExporter.m b/Source/SPExporter.m
index 195d900d..db5cf809 100644
--- a/Source/SPExporter.m
+++ b/Source/SPExporter.m
@@ -95,7 +95,7 @@
exportOutputCompressFile = compress;
- [[[self exportOutputFile] exportFileHandle] setShouldWriteWithCompressionFormat:(compress) ? [self exportOutputCompressionFormat] : SPNoCompression];
+ [[[self exportOutputFile] exportFileHandle] setCompressionFormat:(compress) ? [self exportOutputCompressionFormat] : SPNoCompression];
}
/**