Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Nov 8, 2023
1 parent f8bb30b commit ad66724
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion include/gz/gui/Plugin.hh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ namespace gz::gui
///
/// \sa Load
/// \param[in] _pluginElem Element containing configuration
protected: virtual void LoadConfig(const tinyxml2::XMLElement *_pluginElem);
protected: virtual void LoadConfig(
const tinyxml2::XMLElement *_pluginElem);

/// \brief Get title
/// \return Plugin title.
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/marker_manager/MarkerManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ bool MarkerManager::Implementation::OnMarkerMsgArray(
}

//////////////////////////////////////////////////
bool MarkerManager::Implementation::ProcessMarkerMsg(const gz::msgs::Marker &_msg)
bool MarkerManager::Implementation::ProcessMarkerMsg(
const gz::msgs::Marker &_msg)
{
// Get the namespace, if it exists. Otherwise, use the global namespace
std::string ns;
Expand Down
9 changes: 5 additions & 4 deletions src/plugins/topic_viewer/TopicViewer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,11 @@ void TopicViewer::Implementation::AddField(QStandardItem *_parentItem,
}

//////////////////////////////////////////////////
QStandardItem *TopicViewer::Implementation::FactoryItem(const std::string &_name,
const std::string &_type,
const std::string &_path,
const std::string &_topic)
QStandardItem *TopicViewer::Implementation::FactoryItem(
const std::string &_name,
const std::string &_type,
const std::string &_path,
const std::string &_topic)
{
QString name = QString::fromStdString(_name);
QString type = QString::fromStdString(_type);
Expand Down

0 comments on commit ad66724

Please sign in to comment.