mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 04:01:16 +00:00
invokeActionForRequest: inContext: and
takeValuesFromRequest: inContext: are send to element within the container now. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@13746 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
52c456b6af
commit
893540cdaa
1 changed files with 8 additions and 3 deletions
|
@ -90,8 +90,10 @@ static char rcsId[] = "$Id$";
|
|||
-(GSWElement*)invokeActionForRequest:(GSWRequest*)request_
|
||||
inContext:(GSWContext*)context_
|
||||
{
|
||||
LOGObjectFnNotImplemented(); //TODOFN
|
||||
return nil;
|
||||
// LOGObjectFnNotImplemented(); //TODOFN
|
||||
|
||||
return [element invokeActionForRequest:request_ inContext:context_];
|
||||
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
@ -99,7 +101,10 @@ static char rcsId[] = "$Id$";
|
|||
-(void)takeValuesFromRequest:(GSWRequest*)request_
|
||||
inContext:(GSWContext*)context_
|
||||
{
|
||||
LOGObjectFnNotImplemented(); //TODOFN
|
||||
// LOGObjectFnNotImplemented(); //TODOFN
|
||||
|
||||
return [element takeValuesFromRequest:request_ inContext:context_];
|
||||
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue