aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-31 21:45:24 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-31 21:45:24 +0000
commitba5a0d6b416971b386896088e227e2ec4110b2a3 (patch)
treef62c11d8044a6d648dbb689fcecd1007cc609aa5 /Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h
parent4d09d6c010fac04e9b589ae53e6b272d369ad62b (diff)
downloadsequelpro-ba5a0d6b416971b386896088e227e2ec4110b2a3.tar.gz
sequelpro-ba5a0d6b416971b386896088e227e2ec4110b2a3.tar.bz2
sequelpro-ba5a0d6b416971b386896088e227e2ec4110b2a3.zip
PostgresKit: Update test data and fix not retaining timestamp properties.
Diffstat (limited to 'Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h')
-rw-r--r--Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h b/Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h
index 075ffbb0..0101ffa3 100644
--- a/Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h
+++ b/Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h
@@ -48,12 +48,12 @@
/**
* @property date The date instance that holds the time.
*/
-@property (readonly) NSDate *date;
+@property (readwrite, retain) NSDate *date;
/**
* @property timeZone The time zone of the associated time.
*/
-@property (readonly) NSTimeZone *timeZone;
+@property (readwrite, retain) NSTimeZone *timeZone;
+ (PGPostgresTimeTZ *)timeWithDate:(NSDate *)date timeZoneGMTOffset:(NSUInteger)offset;