Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wxWidgets/Phoenix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 975ab2fcd8e0f48be53eab30ac0e69176672ee80
Choose a base ref
..
head repository: wxWidgets/Phoenix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a707644215f54f3108f5a33a669149d6ee75927e
Choose a head ref
Showing with 1 addition and 4 deletions.
  1. +1 −4 etgtools/extractors.py
5 changes: 1 addition & 4 deletions etgtools/extractors.py
Original file line number Diff line number Diff line change
@@ -719,10 +719,7 @@ def is_top_level(self) -> bool:
all_classes, specials = self.nodeBases
if 'wxTopLevelWindow' in specials:
return True
for d in all_classes:
if 'wxTopLevelWindow' in d:
return True
return False
return 'wxTopLevelWindow' in all_classes


def renameClass(self, newName):