diff options
author | stuconnolly <stuart02@gmail.com> | 2010-10-29 19:11:15 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-10-29 19:11:15 +0000 |
commit | 79f4bb582755adfdc9504830d3a8bf061e1e49c1 (patch) | |
tree | 33a288a71e7f4395ab6e334d6d6f78b26f741f0d /Source | |
parent | 8c27fbba193596ae2123bb8fc30e6d7041f44a83 (diff) | |
download | sequelpro-79f4bb582755adfdc9504830d3a8bf061e1e49c1.tar.gz sequelpro-79f4bb582755adfdc9504830d3a8bf061e1e49c1.tar.bz2 sequelpro-79f4bb582755adfdc9504830d3a8bf061e1e49c1.zip |
Add missing protocol conformance to exporter delegates.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPDotExporter.h | 2 | ||||
-rw-r--r-- | Source/SPHTMLExporter.h | 2 | ||||
-rw-r--r-- | Source/SPPDFExporter.h | 2 | ||||
-rw-r--r-- | Source/SPSQLExporter.h | 2 | ||||
-rw-r--r-- | Source/SPXMLExporter.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPDotExporter.h b/Source/SPDotExporter.h index d54aa05b..5de22927 100644 --- a/Source/SPDotExporter.h +++ b/Source/SPDotExporter.h @@ -53,7 +53,7 @@ /** * @property delegate Exporter delegate */ -@property(readwrite, assign) NSObject *delegate; +@property(readwrite, assign) NSObject <SPDotExporterProtocol> *delegate; /** * @property dotExportTables Table information diff --git a/Source/SPHTMLExporter.h b/Source/SPHTMLExporter.h index 8fc7e54a..521aed9f 100644 --- a/Source/SPHTMLExporter.h +++ b/Source/SPHTMLExporter.h @@ -41,7 +41,7 @@ /** * @property delegate Exporter delegate */ -@property(readwrite, assign) NSObject *delegate; +@property(readwrite, assign) NSObject <SPHTMLExporterProtocol> *delegate; - (id)initWithDelegate:(NSObject *)exportDelegate; diff --git a/Source/SPPDFExporter.h b/Source/SPPDFExporter.h index 2d00e8c1..872f5b23 100644 --- a/Source/SPPDFExporter.h +++ b/Source/SPPDFExporter.h @@ -41,7 +41,7 @@ /** * @property delegate Exporter delegate */ -@property(readwrite, assign) NSObject *delegate; +@property(readwrite, assign) NSObject <SPPDFExporterProtocol> *delegate; - (id)initWithDelegate:(NSObject *)exportDelegate; diff --git a/Source/SPSQLExporter.h b/Source/SPSQLExporter.h index c554a51f..559cdc9e 100644 --- a/Source/SPSQLExporter.h +++ b/Source/SPSQLExporter.h @@ -62,7 +62,7 @@ /** * @property delegate Exporter delegate */ -@property(readwrite, assign) NSObject *delegate; +@property(readwrite, assign) NSObject <SPSQLExporterProtocol> *delegate; /** * @property sqlExportTables Tables diff --git a/Source/SPXMLExporter.h b/Source/SPXMLExporter.h index 4e373e8d..8d7a740c 100644 --- a/Source/SPXMLExporter.h +++ b/Source/SPXMLExporter.h @@ -46,7 +46,7 @@ /** * @property delegate Exporter delegate */ -@property(readwrite, assign) NSObject *delegate; +@property(readwrite, assign) NSObject <SPXMLExporterProtocol> *delegate; /** * @property xmlDataArray Data array |