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.tyo.aptx.org/?a=commitdiff_plain;h=94c304b2be6d14ddb7c4567b56dae3b5ae6c28f3;p=anidbudpclient.git Lower command flood interval to 3 seconds. Fix some typos. --- diff --git a/client.cpp b/client.cpp index 151d856..f469343 100644 --- a/client.cpp +++ b/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;