sw/source/core/crsr/crsrsh.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
New commits: commit 42dd1704ce2b7278b8f9d21344cffc40dd32d896 Author: Johnny_M <[email protected]> Date: Sat Mar 3 12:48:23 2018 +0100 Translate German variable names Akt -> Current in crsrsh Change-Id: I64205dd776babedc4dc68c82e6fe7de7c7a78c79 Reviewed-on: https://gerrit.libreoffice.org/50666 Tested-by: Jenkins <[email protected]> Reviewed-by: Michael Stahl <[email protected]> diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx index fe121cf36254..54f81fa1c161 100644 --- a/sw/source/core/crsr/crsrsh.cxx +++ b/sw/source/core/crsr/crsrsh.cxx @@ -1271,16 +1271,16 @@ void SwCursorShell::Paint(vcl::RenderContext& rRenderContext, const tools::Recta if( m_bHasFocus && !m_bBasicHideCursor ) { - SwShellCursor* pAktCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; + SwShellCursor* pCurrentCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; if( !ActionPend() ) { // so that right/bottom borders will not be cropped - pAktCursor->Invalidate( VisArea() ); - pAktCursor->Show(nullptr); + pCurrentCursor->Invalidate( VisArea() ); + pCurrentCursor->Show(nullptr); } else - pAktCursor->Invalidate( aRect ); + pCurrentCursor->Invalidate( aRect ); } @@ -2122,8 +2122,8 @@ void SwCursorShell::HideCursors() m_pVisibleCursor->Hide(); } // revoke inversion of SSelection - SwShellCursor* pAktCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; - pAktCursor->Hide(); + SwShellCursor* pCurrentCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; + pCurrentCursor->Hide(); } void SwCursorShell::ShowCursors( bool bCursorVis ) @@ -2132,8 +2132,8 @@ void SwCursorShell::ShowCursors( bool bCursorVis ) return; SET_CURR_SHELL( this ); - SwShellCursor* pAktCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; - pAktCursor->Show(nullptr); + SwShellCursor* pCurrentCursor = m_pTableCursor ? m_pTableCursor : m_pCurrentCursor; + pCurrentCursor->Show(nullptr); if( m_bSVCursorVis && bCursorVis ) // also show SV cursor again m_pVisibleCursor->Show(); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
