~ubuntu-branches/ubuntu/quantal/kdegames/quantal

« back to all changes in this revision

Viewing changes to libkdegames/kgame/kmessageserver.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:50 UTC
  • mfrom: (1.3.14)
  • Revision ID: package-import@ubuntu.com-20111215141750-6tj6brf4azhrt915
Tags: 4:4.7.90-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
 
149
149
  kDebug (11001) << ": Now listening to port "
150
150
                  << d->mServerSocket->serverPort();
151
 
  connect (d->mServerSocket, SIGNAL (newClientConnected (KMessageIO*)),
152
 
           this, SLOT (addClient (KMessageIO*)));
 
151
  connect (d->mServerSocket, SIGNAL (newClientConnected(KMessageIO*)),
 
152
           this, SLOT (addClient(KMessageIO*)));
153
153
  return true;
154
154
}
155
155
 
195
195
  // connect its signals
196
196
  connect (client, SIGNAL (connectionBroken()),
197
197
           this, SLOT (removeBrokenClient()));
198
 
  connect (client, SIGNAL (received (const QByteArray &)),
199
 
           this, SLOT (getReceivedMessage (const QByteArray &)));
 
198
  connect (client, SIGNAL (received(QByteArray)),
 
199
           this, SLOT (getReceivedMessage(QByteArray)));
200
200
 
201
201
  // Tell everyone about the new guest
202
202
  // Note: The new client doesn't get this message!