diff options
author | Albert Thuswaldner <albert.thuswaldner@gmail.com> | 2015-09-04 20:08:30 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-09-07 22:21:51 +0000 |
commit | 33ca969387e2e4f92bad159619a5610e67272246 (patch) | |
tree | eb0103e828f1bc07545fbf8b1ec90975fcaf993f /sc/source/ui/view/tabvwshg.cxx | |
parent | bd1d1cbcd39463446ec243c66941e999a65d1da2 (diff) |
tdf#39468 translated german comments in tabvwshg.cxx and tabvwshh.cxx
Change-Id: I4c978a1d2f2a63eae08e30a2f349b445b4a98ecc
Reviewed-on: https://gerrit.libreoffice.org/18347
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/source/ui/view/tabvwshg.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwshg.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/view/tabvwshg.cxx b/sc/source/ui/view/tabvwshg.cxx index 0387b746495e..7711cfe0ec17 100644 --- a/sc/source/ui/view/tabvwshg.cxx +++ b/sc/source/ui/view/tabvwshg.cxx @@ -41,7 +41,7 @@ void ScTabViewShell::InsertURLButton( const OUString& rName, const OUString& rUR const OUString& rTarget, const Point* pInsPos ) { - // Tabelle geschuetzt ? + // protected sheet ? ScViewData& rViewData = GetViewData(); ScDocument* pDoc = rViewData.GetDocument(); @@ -66,7 +66,7 @@ void ScTabViewShell::InsertURLButton( const OUString& rName, const OUString& rUR return; uno::Reference<awt::XControlModel> xControlModel = pUnoCtrl->GetUnoControlModel(); - OSL_ENSURE( xControlModel.is(), "UNO-Control ohne Model" ); + OSL_ENSURE( xControlModel.is(), "UNO control without model" ); if( !xControlModel.is() ) return; @@ -102,7 +102,7 @@ void ScTabViewShell::InsertURLButton( const OUString& rName, const OUString& rUR else aPos = GetInsertPos(); - // Groesse wie in 3.1: + // Size as in 3.1: Size aSize = GetActiveWin()->PixelToLogic(Size(140, 20)); if ( pDoc->IsNegativePage(nTab) ) @@ -110,10 +110,10 @@ void ScTabViewShell::InsertURLButton( const OUString& rName, const OUString& rUR pObj->SetLogicRect(Rectangle(aPos, aSize)); - // am alten VC-Button musste die Position/Groesse nochmal explizit - // gesetzt werden - das scheint mit UnoControls nicht noetig zu sein + // for the old VC-Button the position/size had to be set explicitly once more + // that seems not to be needed with UnoControls - // nicht markieren wenn Ole + // do not mark when Ole pDrView->InsertObjectSafe( pObj, *pDrView->GetSdrPageView() ); } |