diff --git a/src/globalinstances.cpp b/src/globalinstances.cpp index 5f839ea9594a2f5d0e6dc96744903953f02c6dde..3417844d2302e23353b3d5dbf7bc8ffe622fe5e0 100644 --- a/src/globalinstances.cpp +++ b/src/globalinstances.cpp @@ -213,7 +213,7 @@ shortcutCreator() } void -setShortcutCreatorI(std::unique_ptr<Interfaces::ShortcutCreatorI> instance) +setShortcutCreator(std::unique_ptr<Interfaces::ShortcutCreatorI> instance) { // do not allow empty pointers if (!instance) { @@ -232,7 +232,7 @@ actionExtender() } void -setActionExtenderI(std::unique_ptr<Interfaces::ActionExtenderI> instance) +setActionExtender(std::unique_ptr<Interfaces::ActionExtenderI> instance) { // do not allow empty pointers if (!instance) { diff --git a/src/globalinstances.h b/src/globalinstances.h index d4d21542fb0b2524acfaced61cb947de4b20375c..d989cfb0d33ecd9b581defac03bd0c7d15d489cd 100644 --- a/src/globalinstances.h +++ b/src/globalinstances.h @@ -78,7 +78,7 @@ Interfaces::ProfilePersisterI& profilePersister(); void setProfilePersister(std::unique_ptr<Interfaces::ProfilePersisterI> instance); Interfaces::ShortcutCreatorI& shortcutCreator(); -void setShortcutCreatorI(std::unique_ptr<Interfaces::ShortcutCreatorI> instance); +void setShortcutCreator(std::unique_ptr<Interfaces::ShortcutCreatorI> instance); Interfaces::ActionExtenderI& actionExtender(); void setActionExtender(std::unique_ptr<Interfaces::ActionExtenderI> instance);