Skip to content
Snippets Groups Projects
Commit 7c6ac94d authored by Stepan Salenikovich's avatar Stepan Salenikovich Committed by gerrit2
Browse files

correctly rename getter and setter functions

They weren't being used, but they were generating warnings.

Change-Id: Iffce7120854f0811c5e53b4fc67c879036b54709
Tuleap: #211
parent 648acfbd
Branches
Tags
No related merge requests found
......@@ -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) {
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment