aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pysidetest
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@openbossa.org>2010-12-23 15:46:39 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:04 -0300
commit09840da111e373ebde987cc5f34b89aa49ae3a55 (patch)
treec907a7c4ed96de02d3ea26c60b2585bb6952a75f /tests/pysidetest
parent3468d8f78e1b0b54124adbe9d21d097c064bb85e (diff)
Used more common signature on function test to QList objects.
Replaced "const QList<QObject*>" signature to "const QList<QObject*>&", more used on Qt code.
Diffstat (limited to 'tests/pysidetest')
-rw-r--r--tests/pysidetest/testobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pysidetest/testobject.h b/tests/pysidetest/testobject.h
index d88287045..65506b94e 100644
--- a/tests/pysidetest/testobject.h
+++ b/tests/pysidetest/testobject.h
@@ -23,7 +23,7 @@ signals:
void idValue(int newValue);
void justASignal();
void staticMethodDouble();
- void childrenChanged(const QList<QObject*>);
+ void childrenChanged(const QList<QObject*>&);
private:
int m_idValue;