diff options
author | Johnny_M <klasse@partyheld.de> | 2018-03-03 22:35:39 +0100 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-03-04 03:08:11 +0100 |
commit | 13164cc99dc6184fb2c12e56e9c0dea0d5692eec (patch) | |
tree | 9a7331213d525caf2ab8cd27f513791e4174ec14 /sw | |
parent | 8ba463a9d42c50d0ace62e1767ddfd42dfccd3ad (diff) |
Translate German variable names
Akt -> Current in inputwin
Change-Id: Ia1ad41e247bbccda56f954cbfc927927f17b566f
Reviewed-on: https://gerrit.libreoffice.org/50701
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/inc/inputwin.hxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/ribbar/inputwin.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/inc/inputwin.hxx b/sw/source/uibase/inc/inputwin.hxx index 464f63bad57d..c23d2c51a361 100644 --- a/sw/source/uibase/inc/inputwin.hxx +++ b/sw/source/uibase/inc/inputwin.hxx @@ -52,7 +52,7 @@ friend class InputEdit; SwFieldMgr* pMgr; SwWrtShell* pWrtShell; SwView* pView; - OUString aAktTableName, sOldFormula; + OUString aCurrentTableName, sOldFormula; bool bFirst : 1; // initialisations at first call bool bIsTable : 1; diff --git a/sw/source/uibase/ribbar/inputwin.cxx b/sw/source/uibase/ribbar/inputwin.cxx index 90673645e40a..07e71a29b90a 100644 --- a/sw/source/uibase/ribbar/inputwin.cxx +++ b/sw/source/uibase/ribbar/inputwin.cxx @@ -66,7 +66,7 @@ SwInputWindow::SwInputWindow(vcl::Window* pParent, SfxDispatcher const * pDispat , pMgr(nullptr) , pWrtShell(nullptr) , pView(nullptr) - , aAktTableName(aEmptyOUStr) + , aCurrentTableName(aEmptyOUStr) , m_bDoesUndo(true) , m_bResetUndo(false) , m_bCallUndo(false) @@ -208,7 +208,7 @@ void SwInputWindow::ShowWin() while( (nPos = rPos.indexOf( ':',nPos + 1 ) ) != -1 ) nSrch = static_cast<short>(nPos); aPos->SetText( rPos.copy( ++nSrch ) ); - aAktTableName = pWrtShell->GetTableFormat()->GetName(); + aCurrentTableName = pWrtShell->GetTableFormat()->GetName(); } else aPos->SetText(SwResId(STR_TBL_FORMULA)); @@ -382,7 +382,7 @@ IMPL_LINK( SwInputWindow, SelTableCellsNotify, SwWrtShell&, rCaller, void ) SwFrameFormat* pTableFormat = rCaller.GetTableFormat(); OUString sBoxNms( rCaller.GetBoxNms() ); OUString sTableNm; - if( pTableFormat && aAktTableName != pTableFormat->GetName() ) + if( pTableFormat && aCurrentTableName != pTableFormat->GetName() ) sTableNm = pTableFormat->GetName(); aEdit->UpdateRange( sBoxNms, sTableNm ); |