forked from qt-creator/qt-creator
core: progress on the QString->QByteArray for Core::Id, remove UniqueIDManager
Change-Id: I94bec127866822b790a6e45a4201a7a5fe71d6ce Reviewed-on: http://codereview.qt.nokia.com/4208 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -73,7 +73,7 @@ ActionMacroHandler::ActionMacroHandler():
|
||||
QList<Core::Command *> commands = am->commands();
|
||||
foreach (Core::Command *command, commands) {
|
||||
if (command->isScriptable()) {
|
||||
QString id = Core::UniqueIDManager::instance()->stringForUniqueIdentifier(command->id());
|
||||
QString id = Core::Id::fromUniqueIdentifier(command->id()).toString();
|
||||
registerCommand(id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user