diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-07 10:00:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-07 12:32:23 +0200 |
commit | 349700228e4449ace956b30bc65208b9196f0a78 (patch) | |
tree | b42008d0fcd5b13576e4d0f3748bb27276d06d68 /compilerplugins | |
parent | 64d0de92ab06e6550be7dd59ae887750166d15a9 (diff) |
loplugin:mergeclasses
Change-Id: I9f56beebae1ea02a8914b7b25fe7565f7b0df053
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/mergeclasses.py | 2 | ||||
-rw-r--r-- | compilerplugins/clang/mergeclasses.results | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/compilerplugins/clang/mergeclasses.py b/compilerplugins/clang/mergeclasses.py index 07b68f320f28..ebeb17e76819 100755 --- a/compilerplugins/clang/mergeclasses.py +++ b/compilerplugins/clang/mergeclasses.py @@ -66,7 +66,7 @@ for clazz in sorted(definitionSet - instantiatedSet): if clazz.find("mutex") != -1 or clazz.find("Mutex") != -1: continue otherclazz = next(iter(parentChildDict[clazz])) - # exclude combinations that span modules because we often use those to make cross-module dependencies more manageable. + # exclude combinations that span modules because we often use those to make cross-module dependencies more manageable. if extractModuleName(clazz) != extractModuleName(otherclazz): continue print "merge", clazz, "with", otherclazz diff --git a/compilerplugins/clang/mergeclasses.results b/compilerplugins/clang/mergeclasses.results index a92afb513002..e4d910d4ba3b 100644 --- a/compilerplugins/clang/mergeclasses.results +++ b/compilerplugins/clang/mergeclasses.results @@ -46,8 +46,6 @@ merge ISwFrameControl with SwFrameMenuButtonBase merge IXFAttrList with XFSaxAttrList merge IXFStream with XFSaxStream merge IXFStyle with XFStyle -merge ImplGlyphFallbackFontSubstitution with FcGlyphFallbackSubstititution -merge ImplPreMatchFontSubstitution with FcPreMatchSubstititution merge LwpDLList with LwpParaProperty merge LwpDLVListHead with LwpPropList merge OldBasicPassword with basic::SfxScriptLibraryContainer |