diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-21 09:05:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-21 09:05:41 +0000 |
commit | 3d2f43438d4fe6947965a98262b0db42c8d5e680 (patch) | |
tree | e245fa05276d3b30b9537924cb06f7ebe266ac3b /compilerplugins | |
parent | 190f91c71905ca18d6174393ad1b54be74259754 (diff) |
loplugin:unusedmethods sd
Change-Id: I9b5399ace50db3259df2e619f28ae547a38e6c6d
Reviewed-on: https://gerrit.libreoffice.org/17254
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/unusedmethods.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py index cf9ce793d255..600fcf8a2d92 100755 --- a/compilerplugins/clang/unusedmethods.py +++ b/compilerplugins/clang/unusedmethods.py @@ -64,35 +64,35 @@ exclusionSet = set([ "void oox::drawingml::TextParagraphProperties::dump() const", "class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > writerfilter::ooxml::OOXMLPropertySet::toString()", # called from the writerfilter generated code in $WORKDIR, not sure why it is not being picked up + "_Bool writerfilter::ooxml::OOXMLFactory_ns::getElementId(unsigned int,unsigned int,enum writerfilter::ooxml::ResourceType_t &,unsigned int &)", "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultIntegerValue()", "void writerfilter::ooxml::OOXMLFastContextHandler::positivePercentage(const class rtl::OUString &)", - "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleOLE()", "void writerfilter::ooxml::OOXMLFastContextHandler::positionOffset(const class rtl::OUString &)", "void writerfilter::ooxml::OOXMLFastContextHandler::alignH(const class rtl::OUString &)", "void writerfilter::ooxml::OOXMLFastContextHandler::alignV(const class rtl::OUString &)", "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultStringValue()", - "_Bool writerfilter::ooxml::OOXMLFactory_ns::getElementId(unsigned int,unsigned int,enum writerfilter::ooxml::ResourceType_t &,unsigned int &)", "void writerfilter::ooxml::OOXMLFastContextHandler::clearProps()", "void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(const unsigned int &)", "void writerfilter::ooxml::OOXMLFastContextHandler::cr()", "void writerfilter::ooxml::OOXMLFastContextHandler::softHyphen()", "void writerfilter::ooxml::OOXMLFastContextHandler::noBreakHyphen()", "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultBooleanValue()", - "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handlePicture()", "void writerfilter::ooxml::OOXMLFastContextHandler::endField()", "void writerfilter::ooxml::OOXMLFastContextHandler::propagateCharacterPropertiesAsSet(const unsigned int &)", - "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleHdrFtr()", - "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleBreak()", "void writerfilter::ooxml::OOXMLFastContextHandler::tab()", "void writerfilter::ooxml::OOXMLFastContextHandler::ftnednref()", "void writerfilter::ooxml::OOXMLFastContextHandler::ftnednsep()", "void writerfilter::ooxml::OOXMLFastContextHandler::ftnedncont()", "void writerfilter::ooxml::OOXMLFastContextHandler::pgNum()", "void writerfilter::ooxml::OOXMLFastContextHandler::sendRowProperties()", - "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleComment()", "void writerfilter::ooxml::OOXMLFastContextHandler::setLastSectionGroup()", "void writerfilter::ooxml::OOXMLFastContextHandler::endTxbxContent()", "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultHexValue()", + "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleComment()", + "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleOLE()", + "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handlePicture()", + "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleHdrFtr()", + "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleBreak()", ]) |