compilerplugins/clang/mergeclasses.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96256bd5936e129c5bb6d87395ef9006f3dc3956
Author:     Caolán McNamara <[email protected]>
AuthorDate: Wed Nov 4 09:35:33 2020 +0000
Commit:     Noel Grandin <[email protected]>
CommitDate: Wed Nov 4 15:43:09 2020 +0100

    copy_paste_error: "clazz" looks like a copy-paste error
    
    Change-Id: Idc87fcca5da166a532792516277d8199c2558de5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105283
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <[email protected]>

diff --git a/compilerplugins/clang/mergeclasses.py 
b/compilerplugins/clang/mergeclasses.py
index 662808640660..c859ef8daf0d 100755
--- a/compilerplugins/clang/mergeclasses.py
+++ b/compilerplugins/clang/mergeclasses.py
@@ -70,7 +70,7 @@ with open("compilerplugins/clang/mergeclasses.results", "wt") 
as f:
             continue
         otherclazz = next(iter(parentChildDict[clazz]))
         if clazz == "svl::IUndoManager": print extractModuleName(clazz)
-        if clazz == "svl::IUndoManager": print extractModuleName(otherclazz)
+        if otherclazz == "svl::IUndoManager": print 
extractModuleName(otherclazz)
         # exclude combinations that span modules because we often use those to 
make cross-module dependencies more manageable.
         if extractModuleName(clazz) != extractModuleName(otherclazz):
             continue
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to