mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Obliterate hsBool
This commit is contained in:
@ -279,7 +279,7 @@ void plStatusLogMgr::PrevStatusLog( void )
|
||||
|
||||
//// FindLog ////////////////////////////////////////////////////////////////
|
||||
|
||||
plStatusLog *plStatusLogMgr::FindLog( const char *filename, hsBool createIfNotFound )
|
||||
plStatusLog *plStatusLogMgr::FindLog( const char *filename, bool createIfNotFound )
|
||||
{
|
||||
wchar_t* wFilename = hsStringToWString(filename);
|
||||
plStatusLog* ret = FindLog(wFilename, createIfNotFound);
|
||||
@ -287,7 +287,7 @@ plStatusLog *plStatusLogMgr::FindLog( const char *filename, hsBool createIfNotFo
|
||||
return ret;
|
||||
}
|
||||
|
||||
plStatusLog *plStatusLogMgr::FindLog( const wchar_t *filename, hsBool createIfNotFound )
|
||||
plStatusLog *plStatusLogMgr::FindLog( const wchar_t *filename, bool createIfNotFound )
|
||||
{
|
||||
plStatusLog *log = fDisplays;
|
||||
|
||||
|
@ -235,8 +235,8 @@ class plStatusLogMgr
|
||||
void PrevStatusLog( void );
|
||||
void SetCurrStatusLog( const char *logName );
|
||||
void SetCurrStatusLog( const wchar_t *logName );
|
||||
plStatusLog *FindLog( const char *filename, hsBool createIfNotFound = true );
|
||||
plStatusLog *FindLog( const wchar_t *filename, hsBool createIfNotFound = true );
|
||||
plStatusLog *FindLog( const char *filename, bool createIfNotFound = true );
|
||||
plStatusLog *FindLog( const wchar_t *filename, bool createIfNotFound = true );
|
||||
|
||||
void SetDrawer( plStatusLogDrawerStub *drawer ) { fDrawer = drawer; }
|
||||
void SetBasePath( const char * path );
|
||||
|
Reference in New Issue
Block a user