loplugin: unused return values in desktop

Change-Id: Iec7a150c6bdb3b25fe24d711e3e453e1d8a5d26e
This commit is contained in:
Noel Grandin
2016-01-11 11:22:46 +02:00
parent 3f5a9ca46e
commit a3f3cead5d
15 changed files with 36 additions and 60 deletions

View File

@@ -255,7 +255,7 @@ for d in definitionSet:
if d[0] == "void":
continue
# ignore UNO constructor method entrypoints
if "_get_implementation" in d[1]:
if "_get_implementation" in d[1] or "_getFactory" in d[1]:
continue
# the plugin can't see calls to these
if "operator new" in d[1]: