diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-26 14:41:40 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-26 14:42:49 (GMT) |
commit | 98f62f60605bec8ba152e56dd32308e9a5afb5c4 (patch) | |
tree | 9c128a7f66b83a71298673664ecc98f0d08efbeb /tests/auto/qobject/tst_qobject.cpp | |
parent | fad842cebeab8cba78141edd10756a51885f448b (diff) | |
download | Qt-98f62f60605bec8ba152e56dd32308e9a5afb5c4.zip Qt-98f62f60605bec8ba152e56dd32308e9a5afb5c4.tar.gz Qt-98f62f60605bec8ba152e56dd32308e9a5afb5c4.tar.bz2 |
Fix build of autotest on MSVC
Reviewed-by: ogoffart
Diffstat (limited to 'tests/auto/qobject/tst_qobject.cpp')
-rw-r--r-- | tests/auto/qobject/tst_qobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qobject/tst_qobject.cpp b/tests/auto/qobject/tst_qobject.cpp index 65dc742..b20c0e0 100644 --- a/tests/auto/qobject/tst_qobject.cpp +++ b/tests/auto/qobject/tst_qobject.cpp @@ -2933,7 +2933,7 @@ class OverloadObject : public QObject friend class tst_QObject; Q_OBJECT signals: - void sig(int i, char c, qreal m = 12) const; + void sig(int i, char c, qreal m = 12); void sig(int i, int j = 12); void sig(QObject *o, QObject *p, QObject *q = 0, QObject *r = 0) const; void other(int a = 0); |