X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fcore%2FInformationManager.cxx;fp=src%2Fcore%2FInformationManager.cxx;h=c548a553507dbae95d56e52515f1c494fe6067be;hp=b7229d376854639dfc8cc16fbece136f2ef9bed2;hb=057e0e59829f19ee4d9a550f2d3dc9fe9df5c92c;hpb=a066bc221527cb9d48ab669c21da2b36f0364bda diff --git a/src/core/InformationManager.cxx b/src/core/InformationManager.cxx index b7229d3..c548a55 100644 --- a/src/core/InformationManager.cxx +++ b/src/core/InformationManager.cxx @@ -270,7 +270,7 @@ void InformationManager::finishFunction(Function* fun) { blocks.insert(std::make_pair(bl->getStartAddress(), bl)); } NewFunctionEvent event(fun->getStartAddress(), fun); - Q_EMIT newFunctionEvent(&event); + emit newFunctionEvent(&event); } void InformationManager::finishBasicBlock(BasicBlock*) { @@ -279,7 +279,7 @@ void InformationManager::finishBasicBlock(BasicBlock*) { void InformationManager::finishComment(Comment* c) { LOG4CXX_DEBUG(logger, "Finishing comment " << c->getAddress()); ChangeCommentEvent event(c->getAddress(), c->getLocation(), c); - Q_EMIT changeCommentEvent(&event); + emit changeCommentEvent(&event); } void InformationManager::deleteFunction(Function* f) {