Skip to content

Commit

Permalink
fix code_check
Browse files Browse the repository at this point in the history
  • Loading branch information
scpeters committed Jun 21, 2016
1 parent 2e9c276 commit 4d0f429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gazebo/gui/GLWidget.cc
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ bool GLWidget::OnMouseMove(const common::MouseEvent & /*_event*/)
}
else if (this->dataPtr->state == "make_entity")
{
this->OnMouseMoveMakeEntity();
this->OnMouseMoveMakeEntity();
}
else if (this->dataPtr->state == "snap")
{
Expand Down
3 changes: 2 additions & 1 deletion gazebo/gui/GuiIface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ void messageHandler(QtMsgType _type, const QMessageLogContext &_context,
const QString &_msg)
{
QByteArray localMsg = _msg.toLocal8Bit();
switch (_type) {
switch (_type)
{
case QtDebugMsg:
gzdbg << localMsg.constData() << "(" << _context.file
<< ":" << _context.line << " " << _context.function << std::endl;
Expand Down

0 comments on commit 4d0f429

Please sign in to comment.