From d9c8738998cdbb11f8b2e221e8b61609ddf70811 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 25 Nov 2016 10:32:25 +0200 Subject: convert HTML constants to scoped enums and typed_flags Change-Id: Iaaede23c95d08016023fc419c83725f437eda080 --- sw/source/filter/html/htmlfly.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source/filter/html/htmlfly.cxx') diff --git a/sw/source/filter/html/htmlfly.cxx b/sw/source/filter/html/htmlfly.cxx index ddabe12afee2..14cd01e707a2 100644 --- a/sw/source/filter/html/htmlfly.cxx +++ b/sw/source/filter/html/htmlfly.cxx @@ -37,17 +37,17 @@ using namespace css; SwHTMLPosFlyFrame::SwHTMLPosFlyFrame( const SwPosFlyFrame& rPosFly, const SdrObject *pSdrObj, - sal_uInt8 nOutMode ) : + AllHtmlFlags nAllFlags ) : pFrameFormat( &rPosFly.GetFormat() ), pSdrObject( pSdrObj ), pNdIdx( new SwNodeIndex( rPosFly.GetNdIndex() ) ), nOrdNum( rPosFly.GetOrdNum() ), nContentIdx( 0 ), - nOutputMode( nOutMode ) + nAllFlags( nAllFlags ) { const SwFormatAnchor& rAnchor = rPosFly.GetFormat().GetAnchor(); if ((FLY_AT_CHAR == rAnchor.GetAnchorId()) && - HTML_POS_INSIDE == GetOutPos() ) + HtmlPosition::Inside == GetOutPos() ) { // Auto-gebundene Rahmen werden ein Zeichen weiter hinten // ausgegeben, weil dann die Positionierung mit Netscape -- cgit