Utils: Add namespace qualification to signals arguments

Fixes the following warning, and connections to these signals:

 QObject::connect: Cannot queue arguments of type 'FileName'

This amends commit 7cee991c70.

Change-Id: I95e81fd9c328759daec29bf35c4b953983387d30
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2018-07-25 23:42:49 +03:00
committed by Orgad Shaneh
parent e88e47ff68
commit 594ee54e42
3 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ signals:
void append(const QString &text);
void appendSilently(const QString &text);
void appendError(const QString &text);
void appendCommand(const QString &workingDirectory, const FileName &binary,
void appendCommand(const QString &workingDirectory, const Utils::FileName &binary,
const QStringList &args);
void appendMessage(const QString &text);
};