mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 02:41:04 +00:00
see ChangeLog
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20582 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
95931983d3
commit
eeb2371136
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-01-19 David Wetzel <dave@turbocat.de>
|
||||
* GSWeb.framework/GSWElementID.m:
|
||||
o set static SEL to NULL first
|
||||
* GSWeb.framework/GSWDefaultAdaptor.m:
|
||||
o fix for __APPLE__
|
||||
|
||||
2004-12-31 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWAdaptors/common/GSWStats.c:
|
||||
o fixed type
|
||||
|
|
|
@ -129,9 +129,11 @@ int allow_severity = LOG_INFO;
|
|||
object:fileHandle];
|
||||
*/
|
||||
[_fileHandle acceptConnectionInBackgroundAndNotify];
|
||||
#ifndef __APPLE__
|
||||
NSAssert([_fileHandle readInProgress],@"No [_fileHandle readInProgress]");
|
||||
NSDebugDeepMLog(@"%@ - B readInProgress=%d",
|
||||
GSCurrentThread(),(int)[_fileHandle readInProgress]);
|
||||
#endif
|
||||
[GSWApplication statusLogWithFormat:
|
||||
@"Thread %@: Waiting for connections on %@:%d.",
|
||||
GSCurrentThread(),
|
||||
|
|
|
@ -111,8 +111,8 @@ static GSWElementIDIMPs standardElementIDIMPs;
|
|||
// Internal Selectors
|
||||
static SEL deleteElementsFromIndexSelector = NULL;
|
||||
static SEL buildElementPartsSelector = NULL;
|
||||
static SEL appendStringSelector=@selector(appendString:);
|
||||
static SEL setStringSelector=@selector(setString:);
|
||||
static SEL appendStringSelector = NULL;
|
||||
static SEL setStringSelector = NULL;
|
||||
|
||||
// Public Selectors
|
||||
SEL appendZeroElementIDComponentSEL=NULL;
|
||||
|
|
Loading…
Reference in a new issue