From: APTX Date: Fri, 30 Oct 2009 12:54:52 +0000 (+0100) Subject: Lower command flood interval to 3 seconds. Fix some typos. X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=08427d6c71c05c417ef2092f503c377a1766ace7;p=aniplayer-old.git Lower command flood interval to 3 seconds. Fix some typos. --- diff --git a/lib/anidbudpclient/client.cpp b/lib/anidbudpclient/client.cpp index 151d856..f469343 100644 --- a/lib/anidbudpclient/client.cpp +++ b/lib/anidbudpclient/client.cpp @@ -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;