Skip to content
Snippets Groups Projects
Commit a8c14cfc authored by Raul Radu's avatar Raul Radu
Browse files

[Modules] Fixed mistake in closeMe signal

- I cannot use a shared_ptr for this call since I cannot use a shared_ptr
instance of "this" pointer
parent 9653d124
Branches
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ public slots:
signals:
void replaceMe(const Module* oldModule, std::shared_ptr<Module> newModule);
void closeMe(std::shared_ptr<Module> thisModule);
void closeMe(Module* thisModule);
protected:
ModuleId id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment