summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/pagesettings.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-27 14:20:54 +0200
committerNoel Grandin <noel@peralex.com>2015-10-28 09:22:34 +0200
commit16246ed7b280f51a39a01ded24c0d7bd59d59365 (patch)
treee506c24eeae16b384555f08818e0b62ba41e0285 /sc/source/filter/oox/pagesettings.cxx
parent5d3c37b99e8bfa9256f12015152439bf4e5ebbb4 (diff)
com::sun::star->css in sc
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
Diffstat (limited to 'sc/source/filter/oox/pagesettings.cxx')
-rw-r--r--sc/source/filter/oox/pagesettings.cxx6
1 files changed, 3 insertions, 3 deletions
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<sheet::XHeaderFooterContent>&
{
Reference<text::XTextContent> 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<sheet::XHeaderFooterContent>&
Reference<text::XTextContent> 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 );