mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 07:20:55 +00:00
* GSWeb.framework/GSWSession.h/m
([GSWSession permanentPageCacheSize], [GSWSession pageCacheSize]): Replace uint with unsigned int. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19246 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
96c9ccb204
commit
51a473260d
3 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-05-06 S.J. Chun <chunsj@embian.com>
|
||||
David Ayers <d.ayers@inode.at>
|
||||
|
||||
* GSWeb.framework/GSWSession.h/m
|
||||
([GSWSession permanentPageCacheSize], [GSWSession pageCacheSize]):
|
||||
Replace uint with unsigned int.
|
||||
|
||||
2004-05-06 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* INSTALL: Update prerequisites.
|
||||
|
|
|
@ -131,7 +131,7 @@
|
|||
|
||||
-(void)savePage:(GSWComponent*)page;
|
||||
-(GSWComponent*)restorePageForContextID:(NSString*)aContextID;
|
||||
-(uint)permanentPageCacheSize;
|
||||
-(unsigned int)permanentPageCacheSize;
|
||||
-(void)savePageInPermanentCache:(GSWComponent*)page;
|
||||
|
||||
@end
|
||||
|
@ -159,7 +159,7 @@
|
|||
-(void)_replacePage:(GSWComponent*)page;
|
||||
-(void)_savePage:(GSWComponent*)page
|
||||
forChange:(BOOL)forChange;
|
||||
-(uint)pageCacheSize;
|
||||
-(unsigned int)pageCacheSize;
|
||||
-(void)_saveCurrentPage;
|
||||
-(int)_requestCounter;
|
||||
-(void)_contextDidIncrementContextID;
|
||||
|
|
|
@ -759,7 +759,7 @@ RCS_ID("$Id$")
|
|||
|
||||
//--------------------------------------------------------------------
|
||||
//NDFN
|
||||
-(uint)permanentPageCacheSize
|
||||
-(unsigned int)permanentPageCacheSize
|
||||
{
|
||||
return [GSWApp permanentPageCacheSize];
|
||||
};
|
||||
|
@ -1097,7 +1097,7 @@ extern id gcObjectsToBeVisited;
|
|||
|
||||
//--------------------------------------------------------------------
|
||||
//NDFN
|
||||
-(uint)pageCacheSize
|
||||
-(unsigned int)pageCacheSize
|
||||
{
|
||||
return [GSWApp pageCacheSize];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue