Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed May 1, 2016
1 parent 0610721 commit 5f2cbf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/socketexternalcom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void SocketExternalCommunicator::onConnection()

void SocketExternalCommunicator::onReadyRead()
{
QLocalSocket* socket = qobject_cast<QLocalSocket>(sender());
QLocalSocket* socket = qobject_cast<QLocalSocket*>(sender());
QByteArray data;
data.append(socket->readAll());
socket->close();
Expand Down

0 comments on commit 5f2cbf2

Please sign in to comment.