sw/source/uibase/inc/inputwin.hxx    |    2 +-
 sw/source/uibase/ribbar/inputwin.cxx |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 13164cc99dc6184fb2c12e56e9c0dea0d5692eec
Author: Johnny_M <kla...@partyheld.de>
Date:   Sat Mar 3 22:35:39 2018 +0100

    Translate German variable names
    
    Akt -> Current in inputwin
    
    Change-Id: Ia1ad41e247bbccda56f954cbfc927927f17b566f
    Reviewed-on: https://gerrit.libreoffice.org/50701
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Bartosz Kosiorek <gan...@poczta.onet.pl>

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 );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to