diff options
author | Miguel Borges de Freitas <92enen@gmail.com> | 2022-12-04 18:19:33 +0000 |
---|---|---|
committer | Miguel Borges de Freitas <92enen@gmail.com> | 2022-12-04 18:19:33 +0000 |
commit | 6654a13dd650fbd8487c5eb608db2197c5d7d8b5 (patch) | |
tree | 59a2840142726c44273c8038ef127af35296c50f | |
parent | 95c4549b30f69cb22e018e701c8b2a3a0126868d (diff) |
MacOS: some trival xbmc->kodi renames
-rw-r--r-- | xbmc/windowing/osx/OpenGL/OSXGLWindow.mm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xbmc/windowing/osx/OpenGL/OSXGLWindow.mm b/xbmc/windowing/osx/OpenGL/OSXGLWindow.mm index ff526ae434..11f1c9090a 100644 --- a/xbmc/windowing/osx/OpenGL/OSXGLWindow.mm +++ b/xbmc/windowing/osx/OpenGL/OSXGLWindow.mm @@ -144,12 +144,12 @@ return; // if osx is the issuer of the toggle - // call XBMCs toggle function + // call Kodi's toggle function if (!winSystem->GetFullscreenWillToggle()) { // indicate that we are toggling // flag will be reset in SetFullscreen once its - // called from XBMCs gui thread + // called from Kodi's gui thread winSystem->SetFullscreenWillToggle(true); CServiceBroker::GetAppMessenger()->PostMsg(TMSG_TOGGLEFULLSCREEN); @@ -157,7 +157,7 @@ else { // in this case we are just called because - // of xbmc did a toggle - just reset the flag + // of Kodi did a toggle - just reset the flag // we don't need to do anything else winSystem->SetFullscreenWillToggle(false); } @@ -170,19 +170,19 @@ return; // if osx is the issuer of the toggle - // call XBMCs toggle function + // call Kodi's toggle function if (!winSystem->GetFullscreenWillToggle()) { // indicate that we are toggling // flag will be reset in SetFullscreen once its - // called from XBMCs gui thread + // called from Kodi's gui thread winSystem->SetFullscreenWillToggle(true); CServiceBroker::GetAppMessenger()->PostMsg(TMSG_TOGGLEFULLSCREEN); } else { // in this case we are just called because - // of xbmc did a toggle - just reset the flag + // of Kodi did a toggle - just reset the flag // we don't need to do anything else winSystem->SetFullscreenWillToggle(false); } |