Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Feb 3, 2023
1 parent d38866c commit 2ea163b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/plugins/view_angle/ViewAngle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void ViewAngle::LoadConfig(const tinyxml2::XMLElement *)
this->dataPtr->node.Advertise(this->dataPtr->moveToModelService,
&ViewAngle::OnMoveToModelService, this);
gzmsg << "Move to model service on ["
<< this->dataPtr->moveToModelService << "]" << std::endl;
<< this->dataPtr->moveToModelService << "]" << std::endl;

gz::gui::App()->findChild<
gz::gui::MainWindow *>()->installEventFilter(this);
Expand Down Expand Up @@ -325,7 +325,7 @@ bool ViewAngle::OnMoveToModelService(const gz::msgs::GUICamera &_msg,
if (nullptr == visualToMove)
{
gzerr << "Failed to get visual with ID ["
<< _msg.name() << "]" << std::endl;
<< _msg.name() << "]" << std::endl;
_res.set_data(false);
return false;
}
Expand All @@ -339,7 +339,7 @@ bool ViewAngle::OnMoveToModelService(const gz::msgs::GUICamera &_msg,
catch(std::bad_variant_access &_e)
{
gzerr << "Failed to get gazebo-entity user data ["
<< visualToMove->Name() << "]" << std::endl;
<< visualToMove->Name() << "]" << std::endl;
_res.set_data(false);
return false;
}
Expand Down

0 comments on commit 2ea163b

Please sign in to comment.