ActionManager: Remove remaining uses of Id::uniqueIdentifier()

Change-Id: I36a1324d3ba2e56740eaa48cd4140b5d925417cd
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
hjk
2015-06-24 10:28:32 +02:00
parent 2c07175be5
commit 1d286eedb1
2 changed files with 2 additions and 3 deletions

View File

@@ -305,8 +305,7 @@ static QString msgActionWarning(QAction *newAction, Id id, QAction *oldAction)
<< ": Action ";
if (oldAction)
str << oldAction->objectName() << '/' << oldAction->text();
str << " is already registered for context " << id.uniqueIdentifier() << ' '
<< id.toString() << '.';
str << " is already registered for context " << id.toString() << '.';
return msg;
}