diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-10-19 20:11:55 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-10-19 20:11:55 +0000 |
commit | d16d69e7b86095c1493f4a7062751768c31a58fc (patch) | |
tree | f6396cd0a81bca933763ce4e90305be62128589b /protocols/Omegle/src/client.h | |
parent | 3b8beab406e3e93c0c007a8291393bc491669b99 (diff) |
Omegle: Various improvements
* Remove typing weirdness
* Fix resetting "stranger is typing" on receiving message
* Make option "hi message" choose randomly from more messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@15571 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Omegle/src/client.h')
-rw-r--r-- | protocols/Omegle/src/client.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/Omegle/src/client.h b/protocols/Omegle/src/client.h index d3a6bf6856..b33c05350c 100644 --- a/protocols/Omegle/src/client.h +++ b/protocols/Omegle/src/client.h @@ -42,7 +42,7 @@ public: send_message_lock_ = NULL;
state_ = STATE_INACTIVE;
- old_typing_ = typing_ = spy_mode_ = false;
+ typing_ = spy_mode_ = false;
error_count_ = 0;
@@ -74,7 +74,6 @@ public: // State of client
int state_;
bool typing_;
- bool old_typing_;
bool spy_mode_;
// Data storage
|