Skip to content

Commit

Permalink
Refs #21817: Uncrustify
Browse files Browse the repository at this point in the history
Signed-off-by: Carlosespicur <carlosespicur@proton.me>
  • Loading branch information
Carlosespicur committed Nov 15, 2024
1 parent e394a8c commit d43743f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions include/fastdds_monitor/Controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@ public slots:
QString entity_id);

QString get_endpoint_topic_id(
QString endpoint_id);
QString endpoint_id);

QString get_domain_id(
QString entity_id);
QString entity_id);

QString get_name(
QString entity_id);
Expand Down
4 changes: 2 additions & 2 deletions include/fastdds_monitor/Engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ class Engine : public QQmlApplicationEngine
//! Retrieve the name associated to a specific entity
std::string get_name(
const backend::EntityId& entity_id);

//! Retrieve the data type name associated to a specific entity
std::string get_data_type_name(
const backend::EntityId& entity_id);
Expand All @@ -541,7 +541,7 @@ class Engine : public QQmlApplicationEngine
//! Retrieve the topic id associated to a specific endpoint
models::EntityId get_endpoint_topic_id(
const models::EntityId& endpoint_id);

//! Retrieve the id of the domain associated to an entity (Domain, DomainParticipant, Topìc or Endpoints)
models::EntityId get_domain_id(
const models::EntityId& entity_id);
Expand Down
5 changes: 3 additions & 2 deletions src/Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1730,7 +1730,8 @@ std::string Engine::get_type_idl(
models::EntityId Engine::get_endpoint_topic_id(
const models::EntityId& endpoint_id)
{
backend::EntityId topic_id = backend_connection_.get_endpoint_topic_id(backend::models_id_to_backend_id(endpoint_id));
backend::EntityId topic_id =
backend_connection_.get_endpoint_topic_id(backend::models_id_to_backend_id(endpoint_id));
return backend::backend_id_to_models_id(topic_id);
}

Expand All @@ -1739,7 +1740,7 @@ models::EntityId Engine::get_domain_id(
{
backend::EntityId domain_id = backend_connection_.get_domain_id(backend::models_id_to_backend_id(entity_id));
return backend::backend_id_to_models_id(domain_id);
}
}

bool Engine::data_kind_has_target(
const QString& data_kind)
Expand Down

0 comments on commit d43743f

Please sign in to comment.