Commit 9069b147 authored by Pietro Cerutti's avatar Pietro Cerutti Committed by Jan-Erik Rediger
Browse files

Fix typo

parent 1984b309
...@@ -87,7 +87,7 @@ class RedisQtAdapter : public QObject { ...@@ -87,7 +87,7 @@ class RedisQtAdapter : public QObject {
private: private:
void addRead() { void addRead() {
if (m_read) return; if (m_read) return;
m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0), m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0);
connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); connect(m_read, SIGNAL(activated(int)), this, SLOT(read()));
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment