loplugin:staticmethods

Change-Id: Iea68c4e466dd8e1cb7164959a680e5e52542166b
This commit is contained in:
Noel Grandin
2015-04-23 15:34:44 +02:00
parent 0c58017468
commit d3b5038cbb
28 changed files with 121 additions and 125 deletions

View File

@@ -159,7 +159,8 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl)
|| fqn == "connectivity::mozab::ProfileAccess::isProfileLocked"
|| startsWith(fqn, "SbxDecimal::")
|| fqn == "SbiDllMgr::Call" || fqn == "SbiDllMgr::FreeDll"
|| fqn == "SfxApplication::InitializeDde" || fqn == "SfxApplication::RemoveDdeTopic") {
|| fqn == "SfxApplication::InitializeDde" || fqn == "SfxApplication::RemoveDdeTopic"
|| fqn == "ScannerManager::ReleaseData") {
return true;
}
// debugging stuff
@@ -185,7 +186,7 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl)
return true;
}
loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false);
loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false );
}