BOOL to bool

master
Beq 2024-07-19 06:50:22 +01:00
parent 130c1955ca
commit afca69a93e
2 changed files with 2 additions and 2 deletions

View File

@ -1656,7 +1656,7 @@ ECursorType LLWindowMacOSX::getCursor() const
// <FS:LO> Legacy cursor setting from main program
//void LLWindowMacOSX::initCursors()
void LLWindowMacOSX::initCursors(BOOL useLegacyCursors)
void LLWindowMacOSX::initCursors(bool useLegacyCursors)
{
initPixmapCursor(UI_CURSOR_NO, 8, 8);
initPixmapCursor(UI_CURSOR_WORKING, 1, 1);

View File

@ -159,7 +159,7 @@ protected:
~LLWindowMacOSX();
//void initCursors();
void initCursors(BOOL useLegacyCursors); // <FS:LO> Legacy cursor setting from main program
void initCursors(bool useLegacyCursors); // <FS:LO> Legacy cursor setting from main program
bool isValid() override;
void moveWindow(const LLCoordScreen& position,const LLCoordScreen& size);