Kaydet (Commit) 221d874e authored tarafından Miklos Vajna's avatar Miklos Vajna

Fix -Werror=sign-compare

Change-Id: I5c5f31a4970c1c5f2930dd3ae99a46c568101ac4
üst 349c93e0
...@@ -282,9 +282,9 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL ...@@ -282,9 +282,9 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
throw (uno::RuntimeException, xml::sax::SAXException, std::exception) throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
{ {
uno::Reference< xml::sax::XFastContextHandler > xResult; uno::Reference< xml::sax::XFastContextHandler > xResult;
if ((Element & 0xffff0000) != NMSP_mce && !m_bDiscardChildren) if (oox::getNamespace(Element) != NMSP_mce && !m_bDiscardChildren)
xResult.set(lcl_createFastChildContext(Element, Attribs)); xResult.set(lcl_createFastChildContext(Element, Attribs));
else if ((Element & 0xffff0000) == NMSP_mce) else if (oox::getNamespace(Element) == NMSP_mce)
xResult = this; xResult = this;
return xResult; return xResult;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment