diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-05-30 10:57:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-30 21:15:03 +0200 |
commit | 709040e0adf0a533700576b14c8498f986a601e9 (patch) | |
tree | b442f01822040432312359c2c4bd1536d53085bb /sc | |
parent | 656c8754abc6678e5efcaa1fec1dcac0a01ca54c (diff) |
remove duplicate 'using namespace'
Change-Id: I7f8828f677cfb588135ff75c03ffb75895773440
Reviewed-on: https://gerrit.libreoffice.org/38201
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/compiler.cxx | 1 | ||||
-rw-r--r-- | sc/source/filter/html/htmlexp.cxx | 1 | ||||
-rw-r--r-- | sc/source/filter/oox/pivottablebuffer.cxx | 4 |
3 files changed, 0 insertions, 6 deletions
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index a83e13f33a7a..943c89dcc960 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -1828,7 +1828,6 @@ ScCompiler::~ScCompiler() void ScCompiler::CheckTabQuotes( OUString& rString, const FormulaGrammar::AddressConvention eConv ) { - using namespace ::com::sun::star::i18n; sal_Int32 nStartFlags = KParseTokens::ANY_LETTER_OR_NUMBER | KParseTokens::ASC_UNDERSCORE; sal_Int32 nContFlags = nStartFlags; ParseResult aRes = ScGlobal::pCharClass->parsePredefinedToken( diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx index bb07232d3d43..4f1b1038acfe 100644 --- a/sc/source/filter/html/htmlexp.cxx +++ b/sc/source/filter/html/htmlexp.cxx @@ -319,7 +319,6 @@ void ScHTMLExport::WriteHeader() } else { - using namespace ::com::sun::star; uno::Reference<document::XDocumentPropertiesSupplier> xDPS( pDoc->GetDocumentShell()->GetModel(), uno::UNO_QUERY_THROW); uno::Reference<document::XDocumentProperties> xDocProps diff --git a/sc/source/filter/oox/pivottablebuffer.cxx b/sc/source/filter/oox/pivottablebuffer.cxx index f9da29ea2a64..eaeab3b07c38 100644 --- a/sc/source/filter/oox/pivottablebuffer.cxx +++ b/sc/source/filter/oox/pivottablebuffer.cxx @@ -516,7 +516,6 @@ void PivotTableField::convertPageField( const PTPageFieldModel& rPageField ) if( xDPField.is() ) { PropertySet aPropSet( xDPField ); - using namespace ::com::sun::star::sheet; // find cache item used as 'selected page' sal_Int32 nCacheItem = -1; @@ -564,7 +563,6 @@ void PivotTableField::convertDataField( const PTDataFieldModel& rDataField ) if( xDPField.is() ) { PropertySet aPropSet( xDPField ); - using namespace ::com::sun::star::sheet; // field orientation aPropSet.setProperty( PROP_Orientation, DataPilotFieldOrientation_DATA ); @@ -644,7 +642,6 @@ Reference< XDataPilotField > PivotTableField::convertRowColPageField( sal_Int32 ScDPObject* pDPObj = mrPivotTable.getDPObject(); PropertySet aPropSet( xDPField ); - using namespace ::com::sun::star::sheet; // field orientation DataPilotFieldOrientation eFieldOrient = DataPilotFieldOrientation_HIDDEN; @@ -876,7 +873,6 @@ void PivotTableFilter::finalizeImport() PropertySet aPropSet( mrPivotTable.getDataPilotField( maModel.mnField ) ); if( aPropSet.is() ) { - using namespace ::com::sun::star::sheet; DataPilotFieldAutoShowInfo aAutoShowInfo; aAutoShowInfo.IsEnabled = true; aAutoShowInfo.ShowItemsMode = maModel.mbTopFilter ? DataPilotFieldShowItemsMode::FROM_TOP : DataPilotFieldShowItemsMode::FROM_BOTTOM; |