Indentation

This commit is contained in:
Albert Vaca 2015-10-18 21:49:29 -07:00
parent e2f068b286
commit d2b4a6f214
2 changed files with 3 additions and 3 deletions

View file

@ -33,8 +33,8 @@ void SocketLineReader::dataReceived()
{
while (mSocket->canReadLine()) {
const QByteArray line = mSocket->readLine();
if (line.length() > 1) {
mPackages.enqueue(line);//we don't want single \n
if (line.length() > 1) { //we don't want a single \n
mPackages.enqueue(line);
}
}

View file

@ -32,7 +32,7 @@ Q_DECLARE_LOGGING_CATEGORY(KDECONNECT_KIO)
class KioKdeconnect : public QObject, public KIO::SlaveBase
{
Q_OBJECT
Q_OBJECT
public:
KioKdeconnect(const QByteArray &pool, const QByteArray &app);