diff options
author | stuconnolly <stuart02@gmail.com> | 2010-10-08 18:11:04 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-10-08 18:11:04 +0000 |
commit | 76727f8d0e39fcdf1bdfc3bdccb7887265c2f615 (patch) | |
tree | 37b9593faa9321e480d97a7b8922048a838c9bfe /Source | |
parent | 26264ae853f9d2f5460213c660cf036f172c00a7 (diff) | |
download | sequelpro-76727f8d0e39fcdf1bdfc3bdccb7887265c2f615.tar.gz sequelpro-76727f8d0e39fcdf1bdfc3bdccb7887265c2f615.tar.bz2 sequelpro-76727f8d0e39fcdf1bdfc3bdccb7887265c2f615.zip |
Fix constant assignment.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPPrintController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPPrintController.m b/Source/SPPrintController.m index 2fecb035..29cccc66 100644 --- a/Source/SPPrintController.m +++ b/Source/SPPrintController.m @@ -216,7 +216,7 @@ NSDictionary *tableSource = [tableSourceInstance tableSourceForPrinting]; - SPTableType tableType = [tablesListInstance tableType]; + NSInteger tableType = [tablesListInstance tableType]; switch (tableType) { case SPTableTypeTable: |