From afca69a93e7a7f53e22952180267a043d2f02877 Mon Sep 17 00:00:00 2001 From: Beq Date: Fri, 19 Jul 2024 06:50:22 +0100 Subject: [PATCH] BOOL to bool --- indra/llwindow/llwindowmacosx.cpp | 2 +- indra/llwindow/llwindowmacosx.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 94e7de333f..98ec86305b 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -1656,7 +1656,7 @@ ECursorType LLWindowMacOSX::getCursor() const // 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); diff --git a/indra/llwindow/llwindowmacosx.h b/indra/llwindow/llwindowmacosx.h index f66b66db1b..e3589603bc 100644 --- a/indra/llwindow/llwindowmacosx.h +++ b/indra/llwindow/llwindowmacosx.h @@ -159,7 +159,7 @@ protected: ~LLWindowMacOSX(); //void initCursors(); - void initCursors(BOOL useLegacyCursors); // Legacy cursor setting from main program + void initCursors(bool useLegacyCursors); // Legacy cursor setting from main program bool isValid() override; void moveWindow(const LLCoordScreen& position,const LLCoordScreen& size);