diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-04 09:26:42 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-04 11:26:47 +0100 |
commit | 55dcb060ea5feef0478f7abcaa4da9cbe69bd440 (patch) | |
tree | 8c2c150b8699f21b65cb06a81f8d21f9ae54f990 /vcl/headless | |
parent | 5de44f16b68977058386a60ca468de3efa780a25 (diff) |
Drop all commented SAL_DEBUG calls
Change-Id: I3be7153d27b83766303519e73d1a355ba327871a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127929
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpframe.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx index 5f40377f5b86..c6c8a08e29c0 100644 --- a/vcl/headless/svpframe.cxx +++ b/vcl/headless/svpframe.cxx @@ -55,7 +55,6 @@ SvpSalFrame::SvpSalFrame( SvpSalInstance* pInstance, m_nMaxWidth( 0 ), m_nMaxHeight( 0 ) { - // SAL_DEBUG("SvpSalFrame::SvpSalFrame: " << this); #ifdef IOS // Nothing #elif defined ANDROID @@ -86,7 +85,6 @@ SvpSalFrame::~SvpSalFrame() if( s_pFocusFrame == this ) { - // SAL_DEBUG("SvpSalFrame::~SvpSalFrame: losing focus: " << this); s_pFocusFrame = nullptr; // call directly here, else an event for a destroyed frame would be dispatched CallCallback( SalEvent::LoseFocus, nullptr ); @@ -129,7 +127,6 @@ void SvpSalFrame::GetFocus() { if( s_pFocusFrame ) s_pFocusFrame->LoseFocus(); - // SAL_DEBUG("SvpSalFrame::GetFocus(): " << this); s_pFocusFrame = this; m_pInstance->PostEvent( this, nullptr, SalEvent::GetFocus ); } @@ -139,7 +136,6 @@ void SvpSalFrame::LoseFocus() { if( s_pFocusFrame == this ) { - // SAL_DEBUG("SvpSalFrame::LoseFocus: " << this); m_pInstance->PostEvent( this, nullptr, SalEvent::LoseFocus ); s_pFocusFrame = nullptr; } @@ -225,7 +221,6 @@ void SvpSalFrame::Show( bool bVisible, bool bNoActivate ) if (bVisible) { - // SAL_DEBUG("SvpSalFrame::Show: showing: " << this); m_bVisible = true; m_pInstance->PostEvent( this, nullptr, SalEvent::Resize ); if( ! bNoActivate ) @@ -233,7 +228,6 @@ void SvpSalFrame::Show( bool bVisible, bool bNoActivate ) } else { - // SAL_DEBUG("SvpSalFrame::Show: hiding: " << this); m_bVisible = false; LoseFocus(); } |