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
No related branches found
No related tags found
No related merge requests found
...@@ -213,7 +213,7 @@ shortcutCreator() ...@@ -213,7 +213,7 @@ shortcutCreator()
} }
void void
setShortcutCreatorI(std::unique_ptr<Interfaces::ShortcutCreatorI> instance) setShortcutCreator(std::unique_ptr<Interfaces::ShortcutCreatorI> instance)
{ {
// do not allow empty pointers // do not allow empty pointers
if (!instance) { if (!instance) {
...@@ -232,7 +232,7 @@ actionExtender() ...@@ -232,7 +232,7 @@ actionExtender()
} }
void void
setActionExtenderI(std::unique_ptr<Interfaces::ActionExtenderI> instance) setActionExtender(std::unique_ptr<Interfaces::ActionExtenderI> instance)
{ {
// do not allow empty pointers // do not allow empty pointers
if (!instance) { if (!instance) {
......
...@@ -78,7 +78,7 @@ Interfaces::ProfilePersisterI& profilePersister(); ...@@ -78,7 +78,7 @@ Interfaces::ProfilePersisterI& profilePersister();
void setProfilePersister(std::unique_ptr<Interfaces::ProfilePersisterI> instance); void setProfilePersister(std::unique_ptr<Interfaces::ProfilePersisterI> instance);
Interfaces::ShortcutCreatorI& shortcutCreator(); Interfaces::ShortcutCreatorI& shortcutCreator();
void setShortcutCreatorI(std::unique_ptr<Interfaces::ShortcutCreatorI> instance); void setShortcutCreator(std::unique_ptr<Interfaces::ShortcutCreatorI> instance);
Interfaces::ActionExtenderI& actionExtender(); Interfaces::ActionExtenderI& actionExtender();
void setActionExtender(std::unique_ptr<Interfaces::ActionExtenderI> instance); 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