Kaydet (Commit) 42dd1704 authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Michael Stahl

Translate German variable names

Akt -> Current in crsrsh

Change-Id: I64205dd776babedc4dc68c82e6fe7de7c7a78c79
Reviewed-on: https://gerrit.libreoffice.org/50666Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 23bc8f0a
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment