Skip to content

Commit

Permalink
Merge pull request #92723 from AThousandShips/incorrect_sname
Browse files Browse the repository at this point in the history
Fix some incorrect uses of `String` over `StringName`
  • Loading branch information
akien-mga committed Jun 3, 2024
2 parents 56cf773 + 0f72b15 commit 5f1184e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion editor/gui/scene_tree_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ void SceneTreeEditor::_add_nodes(Node *p_node, TreeItem *p_parent) {
const PackedStringArray warnings = p_node->get_configuration_warnings();
const int num_warnings = warnings.size();
if (num_warnings > 0) {
String warning_icon;
StringName warning_icon;
if (num_warnings == 1) {
warning_icon = SNAME("NodeWarning");
} else if (num_warnings <= 3) {
Expand Down
6 changes: 3 additions & 3 deletions editor/plugins/control_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,9 +360,9 @@ void EditorPropertySizeFlags::setup(const Vector<String> &p_options, bool p_vert
}

Control *gui_base = EditorNode::get_singleton()->get_gui_base();
String wide_preset_icon = SNAME("ControlAlignHCenterWide");
String begin_preset_icon = SNAME("ControlAlignCenterLeft");
String end_preset_icon = SNAME("ControlAlignCenterRight");
StringName wide_preset_icon = SNAME("ControlAlignHCenterWide");
StringName begin_preset_icon = SNAME("ControlAlignCenterLeft");
StringName end_preset_icon = SNAME("ControlAlignCenterRight");
if (vertical) {
wide_preset_icon = SNAME("ControlAlignVCenterWide");
begin_preset_icon = SNAME("ControlAlignCenterTop");
Expand Down

0 comments on commit 5f1184e

Please sign in to comment.