diff options
author | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2018-11-17 20:40:55 -0500 |
---|---|---|
committer | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2018-11-17 20:40:55 -0500 |
commit | f8e005142012d92e34b925efb9fd853502729ddc (patch) | |
tree | 8f770ad100caf4e24cc865fba2d352e430a60af3 /editor | |
parent | 9eb4b6d91a64661f8e2823a70f935c602f8a725a (diff) |
Removed unnecessary assignments
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 2f2840192a..14abaa835c 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -209,7 +209,6 @@ EditorAbout::EditorAbout() { TreeItem *tpl_ti_lc = _tpl_tree->create_item(root); tpl_ti_lc->set_text(0, TTR("Licenses")); tpl_ti_lc->set_selectable(0, false); - int read_idx = 0; String long_text = ""; for (int component_index = 0; component_index < COPYRIGHT_INFO_COUNT; component_index++) { @@ -234,7 +233,6 @@ EditorAbout::EditorAbout() { String license = "\n License: " + String(part.license) + "\n"; text += license; long_text += license + "\n"; - read_idx++; } ti->set_metadata(0, text); } |