summaryrefslogtreecommitdiff
path: root/oox/source/mathml
diff options
context:
space:
mode:
authorPetr Vorel <petr.vorel@gmail.com>2012-03-27 11:03:09 +0200
committerCaolán McNamara <caolanm@redhat.com>2012-03-27 16:52:46 +0100
commit16410cdcb91b3d358ab2964deefe8d357cae613b (patch)
tree71a603da1ec9e74e1aadfc437f581ebd5b4f1c2f /oox/source/mathml
parent16244e7f241994fd0284b4ba77933d8fb2f25c1c (diff)
remove unused code (oox, sc)
Diffstat (limited to 'oox/source/mathml')
-rw-r--r--oox/source/mathml/importutils.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/oox/source/mathml/importutils.cxx b/oox/source/mathml/importutils.cxx
index ab9d22483387..41a254d7d296 100644
--- a/oox/source/mathml/importutils.cxx
+++ b/oox/source/mathml/importutils.cxx
@@ -114,11 +114,6 @@ static OUString tokenToString( int token )
} // namespace
-bool XmlStream::AttributeList::hasAttribute( int token ) const
-{
- return attrs.find( token ) != attrs.end();
-}
-
rtl::OUString XmlStream::AttributeList::attribute( int token, const rtl::OUString& def ) const
{
std::map< int, rtl::OUString >::const_iterator find = attrs.find( token );
@@ -304,11 +299,6 @@ bool XmlStream::findTagInternal( int token, bool silent )
return false;
}
-void XmlStream::skipElement( int token )
-{
- return skipElementInternal( token, true ); // no debug about skipping if called from outside
-}
-
void XmlStream::skipElementInternal( int token, bool silent )
{
int closing = ( token & ~TAG_OPENING ) | TAG_CLOSING; // make it a closing tag