mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAdaptors/Postgres95/Postgres95Channel.h
([Postgres95Channel describeDatabaseNames]): Declare method. ([Postgres95Channel userNameIsAdministrative:]): Ditto. * EOAdaptors/Postgres95/LoginPanel/Postgres95LoginPanel.m ([Postgres95LoginPanel init]): Added parentheses to assignment to quiet compiler warning. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@18799 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b94eb05ffe
commit
e8099a558c
3 changed files with 15 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2003-03-08 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOAdaptors/Postgres95/Postgres95Channel.h
|
||||
([Postgres95Channel describeDatabaseNames]): Declare method.
|
||||
([Postgres95Channel userNameIsAdministrative:]): Ditto.
|
||||
|
||||
* EOAdaptors/Postgres95/LoginPanel/Postgres95LoginPanel.m
|
||||
([Postgres95LoginPanel init]): Added parentheses to assignment
|
||||
to quiet compiler warning.
|
||||
|
||||
2003-03-08 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOAdaptors/Postgres95/Postgres95Adaptor.m
|
||||
|
|
|
@ -39,7 +39,7 @@ static BOOL insideModalLoop;
|
|||
}
|
||||
- (id)init
|
||||
{
|
||||
if (self = [super init])
|
||||
if ((self = [super init]))
|
||||
{
|
||||
NSTableColumn *tableColumn;
|
||||
float spacer = 3.0;
|
||||
|
|
|
@ -69,6 +69,10 @@
|
|||
- (void)_describeResults;
|
||||
- (void)_readServerVersion;
|
||||
|
||||
/* Extensions for login panel */
|
||||
- (NSArray *)describeDatabaseNames;
|
||||
- (BOOL)userNameIsAdministrative:(NSString*)userName;
|
||||
|
||||
/* Private methods */
|
||||
- (char*)_readBinaryDataRow: (Oid)oid length: (int*)length zone: (NSZone*)zone;
|
||||
- (Oid)_insertBinaryData: (NSData*)binaryData forAttribute: (EOAttribute*)attr;
|
||||
|
|
Loading…
Reference in a new issue