Kaydet (Commit) 76358d0c authored tarafından Christian M. Heller's avatar Christian M. Heller Kaydeden (comit) Miklos Vajna

fdo#39468 Translate German Comments - fltini.cxx

Reviewed on:
	https://gerrit.libreoffice.org/8664

Change-Id: I719fe3266b80fd6e4da73729c74f3d606708b691
üst 6bc34153
...@@ -137,7 +137,7 @@ Filters::Filters() ...@@ -137,7 +137,7 @@ Filters::Filters()
Filters::~Filters() Filters::~Filters()
{ {
// die Reader vernichten // kill Readers
for( sal_uInt16 n = 0; n < MAXFILTER; ++n ) for( sal_uInt16 n = 0; n < MAXFILTER; ++n )
{ {
SwReaderWriterEntry& rEntry = aReaderWriter[n]; SwReaderWriterEntry& rEntry = aReaderWriter[n];
...@@ -188,7 +188,7 @@ SwRead GetReader( const OUString& rFltName ) ...@@ -188,7 +188,7 @@ SwRead GetReader( const OUString& rFltName )
if ( aFilterDetect[n].IsFilter( rFltName ) ) if ( aFilterDetect[n].IsFilter( rFltName ) )
{ {
pRead = aReaderWriter[n].GetReader(); pRead = aReaderWriter[n].GetReader();
// fuer einige Reader noch eine Sonderbehandlung: // add special treatment for some readers
if ( pRead ) if ( pRead )
pRead->SetFltName( rFltName ); pRead->SetFltName( rFltName );
break; break;
...@@ -214,7 +214,7 @@ sal_Bool SwReader::CheckPasswd( const OUString& /*rPasswd*/, const Reader& /*rOp ...@@ -214,7 +214,7 @@ sal_Bool SwReader::CheckPasswd( const OUString& /*rPasswd*/, const Reader& /*rOp
return sal_True; return sal_True;
} }
// Filter Flags lesen, wird von WW8 / W4W / EXCEL / LOTUS benutzt. // Read Filter Flags; used by WW8 / W4W / EXCEL / LOTUS
/* /*
<FilterFlags> <FilterFlags>
...@@ -323,9 +323,8 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor, ...@@ -323,9 +323,8 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
aSz = (SwFmtFrmSize&)(*pItem); aSz = (SwFmtFrmSize&)(*pItem);
SwTwips nWidth; SwTwips nWidth;
// dann die Breite des Flys selbst bestimmen. Ist eine Tabelle // determine the width; if there is a table use the width of the table;
// defininiert, dann benutze deren Breite, sonst die Breite der // otherwise use the width of the page
// Seite
const SwTableNode* pTblNd = rAnchor.GetNode().FindTableNode(); const SwTableNode* pTblNd = rAnchor.GetNode().FindTableNode();
if( pTblNd ) if( pTblNd )
nWidth = pTblNd->GetTable().GetFrmFmt()->GetFrmSize().GetWidth(); nWidth = pTblNd->GetTable().GetFrmFmt()->GetFrmSize().GetWidth();
...@@ -378,7 +377,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor, ...@@ -378,7 +377,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
pFirstTxtNd->EraseText( aNdIdx, 2 ); pFirstTxtNd->EraseText( aNdIdx, 2 );
} }
// Umrandung und Abstand zum Inhalt beachten // consider border and distance to content
const SvxBoxItem& rBoxItem = (SvxBoxItem&)rFlySet.Get( RES_BOX ); const SvxBoxItem& rBoxItem = (SvxBoxItem&)rFlySet.Get( RES_BOX );
sal_uInt16 nLine = BOX_LINE_LEFT; sal_uInt16 nLine = BOX_LINE_LEFT;
for( int i = 0; i < 2; ++i ) for( int i = 0; i < 2; ++i )
...@@ -394,7 +393,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor, ...@@ -394,7 +393,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
nLine = BOX_LINE_RIGHT; nLine = BOX_LINE_RIGHT;
} }
// Mindestbreite fuer Inhalt einhalten // enforce minimum width for contents
if( nMinFrm < MINLAY ) if( nMinFrm < MINLAY )
nMinFrm = MINLAY; nMinFrm = MINLAY;
if( nMaxFrm < MINLAY ) if( nMaxFrm < MINLAY )
......
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