diff options
author | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-11 00:32:29 (GMT) |
---|---|---|
committer | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-11 00:40:20 (GMT) |
commit | 329572a097e529b0ee330097d31212b091975180 (patch) | |
tree | c495d6db0e5999d41aa9a2e4293718c6ba40e0eb | |
parent | 20cffd52ab81d01ca0a45058dfa894df9ce26c5a (diff) | |
download | Qt-329572a097e529b0ee330097d31212b091975180.zip Qt-329572a097e529b0ee330097d31212b091975180.tar.gz Qt-329572a097e529b0ee330097d31212b091975180.tar.bz2 |
Add comments to private state enums.
-rw-r--r-- | src/network/access/qnetworkreplyimpl_p.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/network/access/qnetworkreplyimpl_p.h b/src/network/access/qnetworkreplyimpl_p.h index 7f1ee80..ec413cc 100644 --- a/src/network/access/qnetworkreplyimpl_p.h +++ b/src/network/access/qnetworkreplyimpl_p.h @@ -111,13 +111,13 @@ public: }; enum State { - Idle, - Buffering, - Working, - Finished, - Aborted, - WaitingForSession, - Reconnecting + Idle, // The reply is idle. + Buffering, // The reply is buffering outgoing data. + Working, // The reply is uploading/downloading data. + Finished, // The reply has finished. + Aborted, // The reply has been aborted. + WaitingForSession, // The reply is waiting for the session to open before connecting. + Reconnecting // The reply will reconnect to once roaming has completed. }; typedef QQueue<InternalNotifications> NotificationQueue; |