Skip to content

Commit a4c28dd

Browse files
author
M. Fatih Cırıt
committed
remove unused panel and dependency
Signed-off-by: M. Fatih Cırıt <mfc@leodrive.ai>
1 parent 38ae94f commit a4c28dd

File tree

5 files changed

+6
-721
lines changed

5 files changed

+6
-721
lines changed

common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ ament_auto_find_build_dependencies()
66

77
set(
88
headers_to_moc
9-
include/overlay_text_display.hpp
109
include/mission_details_display.hpp
1110
)
1211

@@ -21,7 +20,6 @@ endforeach()
2120

2221
set(
2322
display_source_files
24-
src/overlay_text_display.cpp
2523
src/overlay_utils.cpp
2624
src/mission_details_display.cpp
2725
src/remaining_distance_time_display.cpp
@@ -63,7 +61,6 @@ ament_target_dependencies(
6361
PUBLIC
6462
rviz_common
6563
rviz_rendering
66-
autoware_overlay_msgs
6764
autoware_internal_msgs
6865
)
6966

common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/include/overlay_text_display.hpp

-156
This file was deleted.

common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/include/overlay_utils.hpp

+6-8
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@
5454
#include <QColor>
5555
#include <QImage>
5656

57-
#include "autoware_overlay_msgs/msg/overlay_text.hpp"
58-
5957
#include <OgreHardwarePixelBuffer.h>
6058
#include <OgreMaterialManager.h>
6159
#include <OgreTechnique.h>
@@ -90,15 +88,15 @@ class ScopedPixelBuffer
9088
};
9189

9290
enum class VerticalAlignment : uint8_t {
93-
CENTER = autoware_overlay_msgs::msg::OverlayText::CENTER,
94-
TOP = autoware_overlay_msgs::msg::OverlayText::TOP,
95-
BOTTOM = autoware_overlay_msgs::msg::OverlayText::BOTTOM,
91+
CENTER,
92+
TOP,
93+
BOTTOM
9694
};
9795

9896
enum class HorizontalAlignment : uint8_t {
99-
LEFT = autoware_overlay_msgs::msg::OverlayText::LEFT,
100-
RIGHT = autoware_overlay_msgs::msg::OverlayText::RIGHT,
101-
CENTER = autoware_overlay_msgs::msg::OverlayText::CENTER
97+
LEFT,
98+
RIGHT,
99+
CENTER
102100
};
103101

104102
/**

common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/package.xml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<license>BSD-3-Clause</license>
1313

1414
<depend>autoware_internal_msgs</depend>
15-
<depend>autoware_overlay_msgs</depend>
1615
<depend>boost</depend>
1716
<depend>rviz_common</depend>
1817
<depend>rviz_ogre_vendor</depend>

0 commit comments

Comments
 (0)