diff options
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; |