]> Some of my projects - aniplayer-old.git/commitdiff
Lower command flood interval to 3 seconds. Fix some typos.
authorAPTX <marek321@gmail.com>
Fri, 30 Oct 2009 12:54:52 +0000 (13:54 +0100)
committerAPTX <marek321@gmail.com>
Fri, 30 Oct 2009 12:54:52 +0000 (13:54 +0100)
lib/anidbudpclient/client.cpp

index 151d856827e06192f648e193c3fb9da54f703b02..f4693437ef8238972b0cda8157e910e26d12e6be 100644 (file)
@@ -50,7 +50,7 @@ qDebug() << "Api instance init!";
        logoutCommand = new LogoutCommand(this);
        uptimeCommand = new UptimeCommand(this);
 
-       setFloodInterval(5);
+       setFloodInterval(3);
 
        stateMachine = new QtStateMachine(this);
 
@@ -610,13 +610,13 @@ void Client::destroy()
 
 void Client::connect()
 {
-qDebug() << "Conneting";
+qDebug() << "Connecting";
        emit startConnecting();
 }
 
 void Client::disconnect(bool graceful)
 {
-qDebug() << "Disconneting" << (graceful ? "gracefully" : "");
+qDebug() << "Disconnecting" << (graceful ? "gracefully" : "");
        if (graceful)
        {
                disconnecting = true;