aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/macros/actionmacrohandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2011-09-02 12:45:36 +0200
committerhjk <[email protected]>2011-09-05 15:28:46 +0200
commitdf2858bb6c1bf8024d7f655b79c06f9a0a228a23 (patch)
tree25e43631533db6383a08995edbf211de0ae3695e /src/plugins/macros/actionmacrohandler.cpp
parentefa79035d4a6023cdcab18f6682d5961cca7dc12 (diff)
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 <[email protected]>
Diffstat (limited to 'src/plugins/macros/actionmacrohandler.cpp')
-rw-r--r--src/plugins/macros/actionmacrohandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/macros/actionmacrohandler.cpp b/src/plugins/macros/actionmacrohandler.cpp
index fc421708241..36019d9c740 100644
--- a/src/plugins/macros/actionmacrohandler.cpp
+++ b/src/plugins/macros/actionmacrohandler.cpp
@@ -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);
}
}