summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-29 08:50:28 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-29 08:41:53 +0000
commit86c0ce4d4637142b939ebaeb79c6bd35e49c1082 (patch)
tree92db4fc6a8b0e409963e4422d307327274b41931 /compilerplugins
parent8f96ab602a9e7cad1215abb693f33824a7b37679 (diff)
loplugin:countusersofdefaultparams
Change-Id: I26f46ddac3d7d810ebfa1c3e7f1a77427369828e Reviewed-on: https://gerrit.libreoffice.org/28451 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-xcompilerplugins/clang/countusersofdefaultparams.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/compilerplugins/clang/countusersofdefaultparams.py b/compilerplugins/clang/countusersofdefaultparams.py
index cfb271142a3f..f8cda6a34e29 100755
--- a/compilerplugins/clang/countusersofdefaultparams.py
+++ b/compilerplugins/clang/countusersofdefaultparams.py
@@ -53,6 +53,8 @@ for k,v in callDict.iteritems():
continue
if k.endswith("::RegisterChildWindow(_Bool,class SfxModule *,enum SfxChildWindowFlags)"):
continue
+ if k.endswith("::RegisterChildWindowContext(unsigned short,class SfxModule *)"):
+ continue
if k.endswith("::RegisterControl(unsigned short,class SfxModule *)"):
continue
if k.endswith("::RegisterFactory(unsigned short)"):