summaryrefslogtreecommitdiff
path: root/compilerplugins/clang
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-28 13:35:55 +0200
committerNoel Grandin <noel@peralex.com>2015-05-05 09:30:40 +0200
commite95b073790d0f6ddba6bb8e044a6c382627cfe9b (patch)
treecbd4470905c880c6032a3f592f65730e2b7c2bae /compilerplugins/clang
parent86172696f337317320f857016287e4a8850e613c (diff)
loplugin:staticmethods
Change-Id: I60678dfd1bd0d2e4754dbbe6ba053e90d5870780
Diffstat (limited to 'compilerplugins/clang')
-rw-r--r--compilerplugins/clang/staticmethods.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/compilerplugins/clang/staticmethods.cxx b/compilerplugins/clang/staticmethods.cxx
index e2874b2d9c84..4c5ecaf0d307 100644
--- a/compilerplugins/clang/staticmethods.cxx
+++ b/compilerplugins/clang/staticmethods.cxx
@@ -148,7 +148,8 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl)
|| aParentName == "SvtOptionsDrawinglayer" || aParentName == "SvtMenuOptions"
|| aParentName == "SvtToolPanelOptions" || aParentName == "SvtSlideSorterBarOptions"
|| aParentName == "connectivity::SharedResources"
- || aParentName == "svxform::OParseContextClient" )
+ || aParentName == "svxform::OParseContextClient"
+ || aParentName == "frm::OLimitedFormats" )
{
return true;
}
@@ -190,7 +191,7 @@ bool StaticMethods::TraverseCXXMethodDecl(const CXXMethodDecl * pCXXMethodDecl)
return true;
}
-loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false );
+loplugin::Plugin::Registration<StaticMethods> X("staticmethods", false);
}