summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-23 15:16:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-31 09:34:46 +0100
commit84b396a235671ea77f1a9fa0d131cb56d7662737 (patch)
tree13d9de3d2b31424e785780864e084bd2d9315ff1 /sc/source/filter
parentc81d766dd4ff7d8b580b7fdc79db6e68c5f14204 (diff)
new loplugin:namespaceindentation
check indentation of braces in namespace decls, and the comments that often appear with them. This is my penance for messing up the indentation with clang-tidy-modernize-namespaces. As such I have limited it to new-style namespaces for now, and the check is off by default. Change-Id: I4db7f10a81c79bc0eece8f8e3ee564da8bc7f168 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87723 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/oox/autofiltercontext.cxx2
-rw-r--r--sc/source/filter/oox/biffhelper.cxx2
-rw-r--r--sc/source/filter/oox/chartsheetfragment.cxx2
-rw-r--r--sc/source/filter/oox/commentsbuffer.cxx2
-rw-r--r--sc/source/filter/oox/commentsfragment.cxx2
-rw-r--r--sc/source/filter/oox/condformatcontext.cxx2
-rw-r--r--sc/source/filter/oox/connectionsbuffer.cxx2
-rw-r--r--sc/source/filter/oox/connectionsfragment.cxx2
-rw-r--r--sc/source/filter/oox/defnamesbuffer.cxx2
-rw-r--r--sc/source/filter/oox/drawingbase.cxx2
-rw-r--r--sc/source/filter/oox/excelchartconverter.cxx2
-rw-r--r--sc/source/filter/oox/excelfilter.cxx2
-rw-r--r--sc/source/filter/oox/excelhandlers.cxx2
-rw-r--r--sc/source/filter/oox/excelvbaproject.cxx2
-rw-r--r--sc/source/filter/oox/externallinkfragment.cxx2
-rw-r--r--sc/source/filter/oox/extlstcontext.cxx2
-rw-r--r--sc/source/filter/oox/ooxformulaparser.cxx2
-rw-r--r--sc/source/filter/oox/pivotcachefragment.cxx2
-rw-r--r--sc/source/filter/oox/pivottablefragment.cxx2
-rw-r--r--sc/source/filter/oox/querytablebuffer.cxx2
-rw-r--r--sc/source/filter/oox/querytablefragment.cxx2
-rw-r--r--sc/source/filter/oox/richstring.cxx2
-rw-r--r--sc/source/filter/oox/richstringcontext.cxx2
-rw-r--r--sc/source/filter/oox/scenariobuffer.cxx2
-rw-r--r--sc/source/filter/oox/scenariocontext.cxx2
-rw-r--r--sc/source/filter/oox/sharedstringsbuffer.cxx2
-rw-r--r--sc/source/filter/oox/sharedstringsfragment.cxx2
-rw-r--r--sc/source/filter/oox/stylesfragment.cxx2
-rw-r--r--sc/source/filter/oox/tablebuffer.cxx2
-rw-r--r--sc/source/filter/oox/tablecolumnsbuffer.cxx2
-rw-r--r--sc/source/filter/oox/tablecolumnscontext.cxx2
-rw-r--r--sc/source/filter/oox/tablefragment.cxx2
-rw-r--r--sc/source/filter/oox/themebuffer.cxx2
-rw-r--r--sc/source/filter/oox/unitconverter.cxx2
-rw-r--r--sc/source/filter/oox/workbooksettings.cxx2
-rw-r--r--sc/source/filter/oox/worksheetbuffer.cxx2
-rw-r--r--sc/source/filter/oox/worksheetsettings.cxx2
37 files changed, 37 insertions, 37 deletions
diff --git a/sc/source/filter/oox/autofiltercontext.cxx b/sc/source/filter/oox/autofiltercontext.cxx
index 459adefbd019..1e943e3c0206 100644
--- a/sc/source/filter/oox/autofiltercontext.cxx
+++ b/sc/source/filter/oox/autofiltercontext.cxx
@@ -145,6 +145,6 @@ void AutoFilterContext::onStartRecord( SequenceInputStream& rStrm )
mrAutoFilter.importAutoFilter( rStrm, getSheetIndex() );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/biffhelper.cxx b/sc/source/filter/oox/biffhelper.cxx
index 06e0ebe06ee0..ec9b3acbe2a8 100644
--- a/sc/source/filter/oox/biffhelper.cxx
+++ b/sc/source/filter/oox/biffhelper.cxx
@@ -104,6 +104,6 @@ union DecodedDouble
return aString;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/chartsheetfragment.cxx b/sc/source/filter/oox/chartsheetfragment.cxx
index 1047edfd49b0..10fde32051e0 100644
--- a/sc/source/filter/oox/chartsheetfragment.cxx
+++ b/sc/source/filter/oox/chartsheetfragment.cxx
@@ -169,6 +169,6 @@ void ChartsheetFragment::importDrawing( SequenceInputStream& rStrm )
setDrawingPath( getFragmentPathFromRelId( BiffHelper::readString( rStrm ) ) );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/commentsbuffer.cxx b/sc/source/filter/oox/commentsbuffer.cxx
index 359cddc6cad4..60737f46ba36 100644
--- a/sc/source/filter/oox/commentsbuffer.cxx
+++ b/sc/source/filter/oox/commentsbuffer.cxx
@@ -242,6 +242,6 @@ void CommentsBuffer::finalizeImport()
pModel->setLock(bWasLocked);
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/commentsfragment.cxx b/sc/source/filter/oox/commentsfragment.cxx
index b1442e51e9a8..fd4a4e34050c 100644
--- a/sc/source/filter/oox/commentsfragment.cxx
+++ b/sc/source/filter/oox/commentsfragment.cxx
@@ -139,6 +139,6 @@ void CommentsFragment::importComment( SequenceInputStream& rStrm )
mxComment->importComment( rStrm );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/condformatcontext.cxx b/sc/source/filter/oox/condformatcontext.cxx
index bc03c9b2a92f..5b7e624aa18a 100644
--- a/sc/source/filter/oox/condformatcontext.cxx
+++ b/sc/source/filter/oox/condformatcontext.cxx
@@ -259,6 +259,6 @@ void CondFormatContext::onEndRecord()
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/connectionsbuffer.cxx b/sc/source/filter/oox/connectionsbuffer.cxx
index 73de83ac000f..1959f6ea155c 100644
--- a/sc/source/filter/oox/connectionsbuffer.cxx
+++ b/sc/source/filter/oox/connectionsbuffer.cxx
@@ -310,6 +310,6 @@ void ConnectionsBuffer::insertConnectionToMap( const ConnectionRef& rxConnection
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/connectionsfragment.cxx b/sc/source/filter/oox/connectionsfragment.cxx
index 1619747763de..3fafefd1dd3b 100644
--- a/sc/source/filter/oox/connectionsfragment.cxx
+++ b/sc/source/filter/oox/connectionsfragment.cxx
@@ -156,6 +156,6 @@ void ConnectionsFragment::finalizeImport()
getConnections().finalizeImport();
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/defnamesbuffer.cxx b/sc/source/filter/oox/defnamesbuffer.cxx
index 1042510f5cf0..3f7e5c7609b8 100644
--- a/sc/source/filter/oox/defnamesbuffer.cxx
+++ b/sc/source/filter/oox/defnamesbuffer.cxx
@@ -401,6 +401,6 @@ DefinedNameRef DefinedNamesBuffer::createDefinedName()
return xDefName;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/drawingbase.cxx b/sc/source/filter/oox/drawingbase.cxx
index 9b840048f8ef..29ef7d4b53c4 100644
--- a/sc/source/filter/oox/drawingbase.cxx
+++ b/sc/source/filter/oox/drawingbase.cxx
@@ -287,6 +287,6 @@ EmuPoint ShapeAnchor::calcCellAnchorEmu( const CellAnchorModel& rModel ) const
return aEmuPoint;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/excelchartconverter.cxx b/sc/source/filter/oox/excelchartconverter.cxx
index 220b12952be0..d0802f773d7a 100644
--- a/sc/source/filter/oox/excelchartconverter.cxx
+++ b/sc/source/filter/oox/excelchartconverter.cxx
@@ -119,6 +119,6 @@ Reference< XDataSequence > ExcelChartConverter::createDataSequence(
return xDataSeq;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/excelfilter.cxx b/sc/source/filter/oox/excelfilter.cxx
index aeb8507fac87..17d5325e52af 100644
--- a/sc/source/filter/oox/excelfilter.cxx
+++ b/sc/source/filter/oox/excelfilter.cxx
@@ -245,7 +245,7 @@ OUString ExcelFilter::getImplementationName()
return "com.sun.star.comp.oox.xls.ExcelFilter";
}
-} // namespace oox
+} // namespace oox::xls
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
diff --git a/sc/source/filter/oox/excelhandlers.cxx b/sc/source/filter/oox/excelhandlers.cxx
index e22c30e49f4d..1e594b3ca4d6 100644
--- a/sc/source/filter/oox/excelhandlers.cxx
+++ b/sc/source/filter/oox/excelhandlers.cxx
@@ -38,6 +38,6 @@ WorksheetFragmentBase::WorksheetFragmentBase(
{
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/excelvbaproject.cxx b/sc/source/filter/oox/excelvbaproject.cxx
index 100c8ccddfda..df1557620832 100644
--- a/sc/source/filter/oox/excelvbaproject.cxx
+++ b/sc/source/filter/oox/excelvbaproject.cxx
@@ -119,6 +119,6 @@ void ExcelVbaProject::prepareImport()
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/externallinkfragment.cxx b/sc/source/filter/oox/externallinkfragment.cxx
index 0a1474df6428..bcc51246c265 100644
--- a/sc/source/filter/oox/externallinkfragment.cxx
+++ b/sc/source/filter/oox/externallinkfragment.cxx
@@ -330,6 +330,6 @@ const RecordInfo* ExternalLinkFragment::getRecordInfos() const
return spRecInfos;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/extlstcontext.cxx b/sc/source/filter/oox/extlstcontext.cxx
index cd64197c01d8..06aa3d836120 100644
--- a/sc/source/filter/oox/extlstcontext.cxx
+++ b/sc/source/filter/oox/extlstcontext.cxx
@@ -363,6 +363,6 @@ ContextHandlerRef ExtLstGlobalWorkbookContext::onCreateContext( sal_Int32 nEleme
return this;
}
-} //namespace xls
+} //namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/ooxformulaparser.cxx b/sc/source/filter/oox/ooxformulaparser.cxx
index 85470a6049d0..0a7c0d5243e0 100644
--- a/sc/source/filter/oox/ooxformulaparser.cxx
+++ b/sc/source/filter/oox/ooxformulaparser.cxx
@@ -160,7 +160,7 @@ OUString SAL_CALL OOXMLFormulaParser::printFormula(
throw RuntimeException();
}
-} // namespace oox
+} // namespace oox::xls
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
diff --git a/sc/source/filter/oox/pivotcachefragment.cxx b/sc/source/filter/oox/pivotcachefragment.cxx
index a72219962427..c60a383ab9fa 100644
--- a/sc/source/filter/oox/pivotcachefragment.cxx
+++ b/sc/source/filter/oox/pivotcachefragment.cxx
@@ -320,6 +320,6 @@ void PivotCacheRecordsFragment::importPCRecordItem( sal_Int32 nRecId, SequenceIn
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/pivottablefragment.cxx b/sc/source/filter/oox/pivottablefragment.cxx
index 6c5d479dd839..76d2abdcde36 100644
--- a/sc/source/filter/oox/pivottablefragment.cxx
+++ b/sc/source/filter/oox/pivottablefragment.cxx
@@ -275,6 +275,6 @@ const RecordInfo* PivotTableFragment::getRecordInfos() const
return spRecInfos;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/querytablebuffer.cxx b/sc/source/filter/oox/querytablebuffer.cxx
index cd3a415815b2..3764266b9330 100644
--- a/sc/source/filter/oox/querytablebuffer.cxx
+++ b/sc/source/filter/oox/querytablebuffer.cxx
@@ -278,6 +278,6 @@ void QueryTableBuffer::finalizeImport()
maQueryTables.forEachMem( &QueryTable::finalizeImport );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/querytablefragment.cxx b/sc/source/filter/oox/querytablefragment.cxx
index 789e469953f2..a41bda46a18c 100644
--- a/sc/source/filter/oox/querytablefragment.cxx
+++ b/sc/source/filter/oox/querytablefragment.cxx
@@ -67,6 +67,6 @@ const RecordInfo* QueryTableFragment::getRecordInfos() const
return spRecInfos;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/richstring.cxx b/sc/source/filter/oox/richstring.cxx
index a27c0ff12ce6..848ac6917c25 100644
--- a/sc/source/filter/oox/richstring.cxx
+++ b/sc/source/filter/oox/richstring.cxx
@@ -482,6 +482,6 @@ void RichString::createPhoneticPortions( const OUString& rText, PhoneticPortionM
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/richstringcontext.cxx b/sc/source/filter/oox/richstringcontext.cxx
index 98da03bc1602..36cd1a165dea 100644
--- a/sc/source/filter/oox/richstringcontext.cxx
+++ b/sc/source/filter/oox/richstringcontext.cxx
@@ -86,6 +86,6 @@ void RichStringContext::onCharacters( const OUString& rChars )
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/scenariobuffer.cxx b/sc/source/filter/oox/scenariobuffer.cxx
index c8496622cad2..e52423ce6e01 100644
--- a/sc/source/filter/oox/scenariobuffer.cxx
+++ b/sc/source/filter/oox/scenariobuffer.cxx
@@ -207,6 +207,6 @@ void ScenarioBuffer::finalizeImport()
maSheetScenarios.forEachMem( &SheetScenarios::finalizeImport );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/scenariocontext.cxx b/sc/source/filter/oox/scenariocontext.cxx
index 23c5a99828d2..2e192d4a3d67 100644
--- a/sc/source/filter/oox/scenariocontext.cxx
+++ b/sc/source/filter/oox/scenariocontext.cxx
@@ -107,6 +107,6 @@ void ScenariosContext::onStartRecord( SequenceInputStream& rStrm )
mrSheetScenarios.importScenarios( rStrm );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/sharedstringsbuffer.cxx b/sc/source/filter/oox/sharedstringsbuffer.cxx
index 72d40c6d1bcc..2f1287d7342f 100644
--- a/sc/source/filter/oox/sharedstringsbuffer.cxx
+++ b/sc/source/filter/oox/sharedstringsbuffer.cxx
@@ -43,6 +43,6 @@ RichStringRef SharedStringsBuffer::getString( sal_Int32 nStringId ) const
return maStrings.get( nStringId );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/sharedstringsfragment.cxx b/sc/source/filter/oox/sharedstringsfragment.cxx
index 13735126290b..a1f10664595d 100644
--- a/sc/source/filter/oox/sharedstringsfragment.cxx
+++ b/sc/source/filter/oox/sharedstringsfragment.cxx
@@ -83,6 +83,6 @@ void SharedStringsFragment::finalizeImport()
getSharedStrings().finalizeImport();
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/stylesfragment.cxx b/sc/source/filter/oox/stylesfragment.cxx
index 8d0a583ff88f..a6188072b4d8 100644
--- a/sc/source/filter/oox/stylesfragment.cxx
+++ b/sc/source/filter/oox/stylesfragment.cxx
@@ -312,6 +312,6 @@ void StylesFragment::finalizeImport()
getStyles().finalizeImport();
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/tablebuffer.cxx b/sc/source/filter/oox/tablebuffer.cxx
index 97e1ae35f187..df5df5b090a5 100644
--- a/sc/source/filter/oox/tablebuffer.cxx
+++ b/sc/source/filter/oox/tablebuffer.cxx
@@ -205,6 +205,6 @@ void TableBuffer::insertTableToMaps( const TableRef& rxTable )
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/tablecolumnsbuffer.cxx b/sc/source/filter/oox/tablecolumnsbuffer.cxx
index 318befdaa951..57552204c62b 100644
--- a/sc/source/filter/oox/tablecolumnsbuffer.cxx
+++ b/sc/source/filter/oox/tablecolumnsbuffer.cxx
@@ -123,6 +123,6 @@ TableColumns* TableColumnsBuffer::getActiveTableColumns()
return maTableColumnsVector.empty() ? nullptr : maTableColumnsVector.back().get();
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/tablecolumnscontext.cxx b/sc/source/filter/oox/tablecolumnscontext.cxx
index 74003a08446c..270f544bd503 100644
--- a/sc/source/filter/oox/tablecolumnscontext.cxx
+++ b/sc/source/filter/oox/tablecolumnscontext.cxx
@@ -87,6 +87,6 @@ void TableColumnsContext::onStartRecord( SequenceInputStream& rStrm )
mrTableColumns.importTableColumns( rStrm );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/tablefragment.cxx b/sc/source/filter/oox/tablefragment.cxx
index f86491d9e83c..99f3ede7a0d8 100644
--- a/sc/source/filter/oox/tablefragment.cxx
+++ b/sc/source/filter/oox/tablefragment.cxx
@@ -92,6 +92,6 @@ const RecordInfo* TableFragment::getRecordInfos() const
return spRecInfos;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/themebuffer.cxx b/sc/source/filter/oox/themebuffer.cxx
index 303ff7f2cfae..3c82a31610fd 100644
--- a/sc/source/filter/oox/themebuffer.cxx
+++ b/sc/source/filter/oox/themebuffer.cxx
@@ -49,6 +49,6 @@ ThemeBuffer::~ThemeBuffer()
return getClrScheme().getColorByIndex(nIndex, nColor) ? nColor : API_RGB_TRANSPARENT;
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/unitconverter.cxx b/sc/source/filter/oox/unitconverter.cxx
index 911a01785b35..c5036267e420 100644
--- a/sc/source/filter/oox/unitconverter.cxx
+++ b/sc/source/filter/oox/unitconverter.cxx
@@ -235,6 +235,6 @@ double UnitConverter::getCoefficient( Unit eUnit ) const
return maCoeffs[ eUnit ];
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/workbooksettings.cxx b/sc/source/filter/oox/workbooksettings.cxx
index 180e643b8231..5f83e42f1a24 100644
--- a/sc/source/filter/oox/workbooksettings.cxx
+++ b/sc/source/filter/oox/workbooksettings.cxx
@@ -286,6 +286,6 @@ void WorkbookSettings::setDateMode( bool bDateMode1904, bool bDateCompatibility
getUnitConverter().finalizeNullDate( getNullDate() );
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/worksheetbuffer.cxx b/sc/source/filter/oox/worksheetbuffer.cxx
index 04cf5c41fb88..b165d5bea723 100644
--- a/sc/source/filter/oox/worksheetbuffer.cxx
+++ b/sc/source/filter/oox/worksheetbuffer.cxx
@@ -240,6 +240,6 @@ void WorksheetBuffer::finalizeImport( sal_Int16 nActiveSheet )
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/oox/worksheetsettings.cxx b/sc/source/filter/oox/worksheetsettings.cxx
index 719b2904301b..08899e4e641a 100644
--- a/sc/source/filter/oox/worksheetsettings.cxx
+++ b/sc/source/filter/oox/worksheetsettings.cxx
@@ -288,6 +288,6 @@ void WorksheetSettings::finalizeImport()
}
}
-} // namespace oox
+} // namespace oox::xls
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */