Skip to content

Commit

Permalink
Refactored, deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
void-inject committed Jan 8, 2025
1 parent e606595 commit 949913d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion library/private/interactor_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ class interactor_impl : public interactor
private:
class internals;
std::unique_ptr<internals> Internals;
std::unordered_map<std::string, std::string> aliasMap;
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion library/src/interactor_impl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ class interactor_impl::internals
std::multimap<std::string, interaction_bind_t> GroupedBinds;
std::vector<std::string> OrderedBindGroups;

std::map<std::string, std::string> aliasMap;
std::map<std::string, std::string> AliasMap;

vtkNew<vtkCellPicker> CellPicker;
vtkNew<vtkPointPicker> PointPicker;
Expand Down
1 change: 0 additions & 1 deletion library/testing/TestSDKInteractorCommand.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ int TestSDKInteractorCommand(int argc, char* argv[])
inter.triggerCommand("axis_off");
test("triggerCommand alias resolve", options.ui.axis == false);


// triggerCommand error codepaths
test("triggerCommand toggle incompatible",
inter.triggerCommand("toggle scene.animation.index") == false);
Expand Down

0 comments on commit 949913d

Please sign in to comment.