diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-31 21:45:24 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-31 21:45:24 +0000 |
commit | ba5a0d6b416971b386896088e227e2ec4110b2a3 (patch) | |
tree | f62c11d8044a6d648dbb689fcecd1007cc609aa5 /Frameworks/PostgresKit/Source/PGPostgresTimeTZ.h | |
parent | 4d09d6c010fac04e9b589ae53e6b272d369ad62b (diff) | |
download | sequelpro-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.h | 4 |
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; |