From 234884c09db0301b9f0b3336f9b0dbb9523ee005 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 24 Nov 2015 18:54:48 +0200 Subject: loplugin:unusedfields in include/sot,include/svl,include/svtools Change-Id: Ia2dd13c2c48b127ab85311a668fa1f37608d360a --- compilerplugins/clang/unusedfields.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compilerplugins/clang/unusedfields.py') diff --git a/compilerplugins/clang/unusedfields.py b/compilerplugins/clang/unusedfields.py index 7fc6d4aeb2e4..47488887c4bb 100755 --- a/compilerplugins/clang/unusedfields.py +++ b/compilerplugins/clang/unusedfields.py @@ -67,7 +67,8 @@ for d in definitionSet: or srcLoc.startswith("vcl/source/filter/sgvmain.hxx") or srcLoc.startswith("vcl/source/filter/sgfbram.hxx") or srcLoc.startswith("vcl/inc/unx/XIM.h") - or srcLoc.startswith("vcl/inc/unx/gtk/gloactiongroup.h")): + or srcLoc.startswith("vcl/inc/unx/gtk/gloactiongroup.h") + or srcLoc.startswith("include/svl/svdde.hxx")): continue tmp1set.add((clazz + " " + definitionToTypeMap[d], srcLoc)) -- cgit