summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/compiler.cxx1
-rw-r--r--sc/source/filter/html/htmlexp.cxx1
-rw-r--r--sc/source/filter/oox/pivottablebuffer.cxx4
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;