summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h')
-rw-r--r--src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h b/src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h
index 1d6dcf2885..af8122f753 100644
--- a/src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h
+++ b/src/platformsupport/cfsocketnotifier/qcfsocketnotifier_p.h
@@ -53,14 +53,11 @@
QT_BEGIN_NAMESPACE
struct MacSocketInfo {
- MacSocketInfo() : socket(0), runloop(0), readNotifier(0), writeNotifier(0),
- readEnabled(false), writeEnabled(false) {}
+ MacSocketInfo() : socket(0), runloop(0), readNotifier(0), writeNotifier(0) {}
CFSocketRef socket;
CFRunLoopSourceRef runloop;
QObject *readNotifier;
QObject *writeNotifier;
- bool readEnabled;
- bool writeEnabled;
};
typedef QHash<int, MacSocketInfo *> MacSocketHash;
@@ -84,7 +81,6 @@ public:
void setMaybeCancelWaitForMoreEventsCallback(MaybeCancelWaitForMoreEventsFn callBack);
void registerSocketNotifier(QSocketNotifier *notifier);
void unregisterSocketNotifier(QSocketNotifier *notifier);
- void enableSocketNotifiers();
void removeSocketNotifiers();
MacSocketHash macSockets;