From 16246ed7b280f51a39a01ded24c0d7bd59d59365 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 27 Oct 2015 14:20:54 +0200 Subject: com::sun::star->css in sc Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915 --- sc/source/filter/oox/pagesettings.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/source/filter/oox/pagesettings.cxx') diff --git a/sc/source/filter/oox/pagesettings.cxx b/sc/source/filter/oox/pagesettings.cxx index 3e9c17e7934f..7d33ba13d3fa 100644 --- a/sc/source/filter/oox/pagesettings.cxx +++ b/sc/source/filter/oox/pagesettings.cxx @@ -558,7 +558,7 @@ double HeaderFooterParser::parse( const Reference& { Reference xContent = createField( maFileNameService ); PropertySet aPropSet( xContent ); - aPropSet.setProperty( PROP_FileFormat, ::com::sun::star::text::FilenameDisplayFormat::NAME_AND_EXT ); + aPropSet.setProperty( PROP_FileFormat, css::text::FilenameDisplayFormat::NAME_AND_EXT ); appendField( xContent ); } break; @@ -568,7 +568,7 @@ double HeaderFooterParser::parse( const Reference& Reference xContent = createField( maFileNameService ); PropertySet aPropSet( xContent ); // FilenameDisplayFormat::PATH not supported by Calc - aPropSet.setProperty( PROP_FileFormat, ::com::sun::star::text::FilenameDisplayFormat::FULL ); + aPropSet.setProperty( PROP_FileFormat, css::text::FilenameDisplayFormat::FULL ); appendField( xContent ); /* path only is not supported -- if we find a '&Z&F' combination for path/name, skip the '&F' part */ @@ -988,7 +988,7 @@ void PageSettingsConverter::writePageSettingsProperties( if( !rModel.maGraphicUrl.isEmpty() ) { aPropMap.setProperty( PROP_BackGraphicURL, rModel.maGraphicUrl); - aPropMap.setProperty( PROP_BackGraphicLocation, ::com::sun::star::style::GraphicLocation_TILED); + aPropMap.setProperty( PROP_BackGraphicLocation, css::style::GraphicLocation_TILED); } rPropSet.setProperties( aPropMap ); -- cgit