summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:43:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:45:46 +0000
commit1271eadfac7e77ff7b249e64be3857ffdc0a261c (patch)
treebebb8924d3efea223eef40a85c5a239195b18330 /oox
parent20ba5d464a9fba3090af6a644a331ee237356fea (diff)
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: Id9dd5a53d6ea5134ebb473bd0463f8f42965a211 Reviewed-on: https://gerrit.libreoffice.org/23674 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/mathml/importutils.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/mathml/importutils.cxx b/oox/source/mathml/importutils.cxx
index 463372a4b9e2..e3f4d90db563 100644
--- a/oox/source/mathml/importutils.cxx
+++ b/oox/source/mathml/importutils.cxx
@@ -54,7 +54,7 @@ AttributeListBuilder::AttributeListBuilder( const uno::Reference< xml::sax::XFas
}
}
-static OString tokenToString( int token )
+OString tokenToString( int token )
{
const uno::Sequence< sal_Int8 > aTokenNameSeq = StaticTokenMap::get().getUtf8TokenName( token & TOKEN_MASK );
OString tokenname( reinterpret_cast< const char* >( aTokenNameSeq.getConstArray() ), aTokenNameSeq.getLength() );