Skip to content

Commit

Permalink
Fixing identation issue introduced in commit a6fa289
Browse files Browse the repository at this point in the history
  • Loading branch information
vinipsmaker committed Feb 25, 2014
1 parent bf2e598 commit 3096233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/httpserverrequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const http_parser_settings HttpServerRequest::Priv::httpSettingsInstance

HttpServerRequest::HttpServerRequest(QAbstractSocket &socket, QObject *parent) :
QObject(parent),
priv(new Priv(this, socket))
priv(new Priv(this, socket))
{
connect(&socket, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
connect(&socket, SIGNAL(disconnected()), this, SIGNAL(close()));
Expand Down

0 comments on commit 3096233

Please sign in to comment.