aboutsummaryrefslogtreecommitdiffstats
path: root/tools/snippets_translate/main.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-11-27 14:57:02 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-11-29 17:34:22 +0100
commit9b887937f971887a32aefd584cc247bc7ec0f36e (patch)
treed26946ce4c67be071d2a9d2d18cbbba4ad74ce77 /tools/snippets_translate/main.py
parent49353faf76fd8d9a26e6304a5816ccc026c5f9a1 (diff)
snippets_translate: Enable all modules
Fix a fixme commment. To make this pass, make the conditions matches more strict and add some warnings and error handling. Remove the checking of stderr from the CMake statement as this will produce some warnings. Pick-to: 6.2 Task-number: PYSIDE-1721 Change-Id: I8aeefa8355144d98524a622733d82d337cd3c23b Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'tools/snippets_translate/main.py')
-rw-r--r--tools/snippets_translate/main.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/snippets_translate/main.py b/tools/snippets_translate/main.py
index 94408a483..29a445fd9 100644
--- a/tools/snippets_translate/main.py
+++ b/tools/snippets_translate/main.py
@@ -397,9 +397,6 @@ def process(options):
else:
for i in qt_path.iterdir():
module_name = i.name
- # FIXME: remove this, since it's just for testing.
- if i.name != "qtbase":
- continue
# Filter only Qt modules
if not module_name.startswith("qt"):