From 9e4fa5e29e4aa78a6ad001d347721439bb8e04e4 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Fri, 31 May 2013 13:38:04 +0200 Subject: [PATCH] Squish: Fix installLazySignalHandler() registration Change-Id: I3bab865726feedc6df54ad852d4aaf5f3bc1460d Reviewed-by: Robert Loehning --- tests/system/suite_editors/tst_basic_cpp_support/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/system/suite_editors/tst_basic_cpp_support/test.py b/tests/system/suite_editors/tst_basic_cpp_support/test.py index ca769a0a437..e2af9096418 100644 --- a/tests/system/suite_editors/tst_basic_cpp_support/test.py +++ b/tests/system/suite_editors/tst_basic_cpp_support/test.py @@ -46,7 +46,8 @@ def main(): if not startedWithoutPluginError(): return overrideInstallLazySignalHandler() - installLazySignalHandler(":Qt Creator_CppEditor::Internal::CPPEditorWidget", "textChanged()", + # used simplified object to omit the visible property - causes Squish problem here otherwise + installLazySignalHandler("{type='CppEditor::Internal::CPPEditorWidget'}", "textChanged()", "__handleTextChanged__") openQmakeProject(proFile) progressBarWait(20000)