Created
December 1, 2011 13:37
-
-
Save romanlehnert/1416783 to your computer and use it in GitHub Desktop.
Patch for qt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/3rdparty/webkit/WebCore/platform/network/qt/SocketStreamHandleQt.cpp b/src/3rdparty/webkit/WebCore/platform/network/qt/SocketStreamHandleQt.cpp | |
index e666ff7..8abcc48 100644 | |
--- a/src/3rdparty/webkit/WebCore/platform/network/qt/SocketStreamHandleQt.cpp | |
+++ b/src/3rdparty/webkit/WebCore/platform/network/qt/SocketStreamHandleQt.cpp | |
@@ -100,7 +100,7 @@ int SocketStreamHandlePrivate::send(const char* data, int len) | |
if (!m_socket || m_socket->state() != QAbstractSocket::ConnectedState) | |
return 0; | |
quint64 sentSize = m_socket->write(data, len); | |
- QMetaObject::invokeMethod(this, "socketSentData", Qt::QueuedConnection); | |
+ QMetaObject::invokeMethod(this, "socketSentdata", Qt::QueuedConnection); | |
return sentSize; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment