Skip to content

Commit

Permalink
remve more ign
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Koenig <[email protected]>
  • Loading branch information
nkoenig committed Aug 10, 2023
1 parent 6851f04 commit 5844641
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 19 deletions.
9 changes: 0 additions & 9 deletions examples/plugin/gz_components/GzComponents.qml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,4 @@ Column {
value: 5.8
width: 300
}

// Deprecated spin box
IgnSpinBox {
minimumValue: -2
maximumValue: 19
decimals: 0
stepSize: 3
value: 5
}
}
4 changes: 0 additions & 4 deletions include/gz/gui/qml/qmldir
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,3 @@ GzPose 1.0 GzPose.qml
GzSnackBar 1.0 GzSnackBar.qml
GzSpinBox 1.0 GzSpinBox.qml
GzVector3 1.0 GzVector3.qml

# Deprecated components, remove on tock
IgnSnackBar 1.0 GzSnackBar.qml
IgnSpinBox 1.0 GzSpinBox.qml
4 changes: 0 additions & 4 deletions src/Application.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ namespace gz
/// these until it is ok to unload the plugin's shared library.
public: std::vector<std::shared_ptr<Plugin>> pluginsAdded;

/// \brief Deprecated environment variable which holds paths to look for
/// plugins
public: std::string pluginPathEnvDeprecated = "IGN_GUI_PLUGIN_PATH";

/// \brief Environment variable which holds paths to look for plugins
public: std::string pluginPathEnv = "GZ_GUI_PLUGIN_PATH";

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class gz::gui::PluginPrivate
public: QQmlContext *context{nullptr};

/// \brief Map of card properties to be passed to QML card object.
/// Accepts all QML Pane properties plus custom Igntiion GUI properties.
/// Accepts all QML Pane properties plus custom Gazeb: GUI properties.
/// https://doc.qt.io/qt-5/qml-qtquick-controls2-pane-members.html
public: std::map<std::string, QVariant> cardProperties;

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/marker_manager/MarkerManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ bool MarkerManagerPrivate::ProcessMarkerMsg(const gz::msgs::Marker &_msg)
else
{
// Create the name for the marker
std::string name = "__IGN_MARKER_VISUAL_" + ns + "_" +
std::string name = "__GZ_MARKER_VISUAL_" + ns + "_" +
std::to_string(id);

// Create the new marker
Expand Down

0 comments on commit 5844641

Please sign in to comment.