summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp')
-rw-r--r--tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp b/tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp
index 86c810fe15..964f5cd26b 100644
--- a/tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp
+++ b/tests/auto/corelib/kernel/qobject/signalbug/signalbug.cpp
@@ -99,9 +99,9 @@ void Disconnector::received ()
if (::Step == 5)
{
- disconnect (s, SIGNAL (fired ()), s->d, SLOT (received ()));
+ disconnect (s, SIGNAL(fired()), s->d, SLOT(received()));
- connect (&RandomSender, SIGNAL (fired ()), s->d, SLOT (received ()));
+ connect (&RandomSender, SIGNAL(fired()), s->d, SLOT(received()));
}
TRACE (stepCopy, "ends Disconnector::received()");
@@ -113,9 +113,9 @@ Sender::Sender (Receiver *r, Disconnector *d)
{
this->r = r; this->d = d;
if (r)
- connect (this, SIGNAL (fired ()), r, SLOT (received ()));
+ connect (this, SIGNAL(fired()), r, SLOT(received()));
if (d)
- connect (this, SIGNAL (fired ()), d, SLOT (received ()));
+ connect (this, SIGNAL(fired()), d, SLOT(received()));
};
void Sender::fire ()