summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-03-03 12:48:23 +0100
committerMichael Stahl <mstahl@redhat.com>2018-03-05 10:44:24 +0100
commit42dd1704ce2b7278b8f9d21344cffc40dd32d896 (patch)
tree78a381bfcb549db8936df733bad78358009e8383 /sw
parent23bc8f0aa09d7d8cce284314723b3eb8b74972c1 (diff)
Translate German variable names
Akt -> Current in crsrsh Change-Id: I64205dd776babedc4dc68c82e6fe7de7c7a78c79 Reviewed-on: https://gerrit.libreoffice.org/50666 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/crsr/crsrsh.cxx16
1 files changed, 8 insertions, 8 deletions
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();