* 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:
ayers 2004-03-08 11:23:58 +00:00
parent b94eb05ffe
commit e8099a558c
3 changed files with 15 additions and 1 deletions

View file

@ -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

View file

@ -39,7 +39,7 @@ static BOOL insideModalLoop;
}
- (id)init
{
if (self = [super init])
if ((self = [super init]))
{
NSTableColumn *tableColumn;
float spacer = 3.0;

View file

@ -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;