godot/scene/gui
Rémi Verschelde d95bbb8922 Fix warnings about set but unused variables [-Wunused-but-set-variable]
Fixes the following GCC 5 warnings:
```
drivers/gles2/rasterizer_canvas_gles2.cpp:814:8: warning: variable 'rt_size' set but not used [-Wunused-but-set-variable]
drivers/gles2/rasterizer_scene_gles2.cpp:2270:11: warning: variable 'vp_height' set but not used [-Wunused-but-set-variable]
drivers/gles2/rasterizer_scene_gles2.cpp:2673:22: warning: variable 'e' set but not used [-Wunused-but-set-variable]
drivers/gles2/rasterizer_scene_gles2.cpp:715:7: warning: variable 'no_cull' set but not used [-Wunused-but-set-variable]
drivers/gles2/shader_gles2.cpp:693:14: warning: variable 'cc' set but not used [-Wunused-but-set-variable]
drivers/gles3/rasterizer_canvas_gles3.cpp:1226:8: warning: variable 'rt_size' set but not used [-Wunused-but-set-variable]
drivers/gles3/rasterizer_scene_gles3.cpp:3039:10: warning: variable 'contrib' set but not used [-Wunused-but-set-variable]
drivers/gles3/rasterizer_scene_gles3.cpp:4504:32: warning: variable 'vp_height' set but not used [-Wunused-but-set-variable]
editor/editor_inspector.cpp:272:9: warning: variable 'guide_color' set but not used [-Wunused-but-set-variable]
editor/editor_themes.cpp:1067:14: warning: variable 'alpha3' set but not used [-Wunused-but-set-variable]
editor/editor_themes.cpp:263:8: warning: variable 'script_bg_color' set but not used [-Wunused-but-set-variable]
editor/plugins/collision_shape_2d_editor_plugin.cpp:326:11: warning: variable 'cpoint' set but not used [-Wunused-but-set-variable]
editor/plugins/mesh_editor_plugin.cpp:72:9: warning: variable 'size' set but not used [-Wunused-but-set-variable]
editor/plugins/shader_editor_plugin.cpp:471:12: warning: variable 'mpos' set but not used [-Wunused-but-set-variable]
editor/plugins/shader_editor_plugin.cpp:89:8: warning: variable 'basetype_color' set but not used [-Wunused-but-set-variable]
editor/plugins/shader_editor_plugin.cpp:90:8: warning: variable 'type_color' set but not used [-Wunused-but-set-variable]
editor/plugins/shader_editor_plugin.cpp:92:8: warning: variable 'string_color' set but not used [-Wunused-but-set-variable]
modules/visual_script/visual_script_editor.cpp:2521:7: warning: variable 'seq_connect' set but not used [-Wunused-but-set-variable]
platform/android/export/export.cpp:580:12: warning: variable 'styles_count' set but not used [-Wunused-but-set-variable]
platform/android/export/export.cpp:584:12: warning: variable 'styles_offset' set but not used [-Wunused-but-set-variable]
platform/osx/export/export.cpp:464:9: warning: variable 'zerr' set but not used [-Wunused-but-set-variable]
scene/2d/tile_map.cpp:260:10: warning: variable 'tcenter' set but not used [-Wunused-but-set-variable]
scene/3d/light.cpp:166:7: warning: variable 'editor_ok' set but not used [-Wunused-but-set-variable]
scene/3d/navigation.cpp:566:11: warning: variable 'closest_navmesh' set but not used [-Wunused-but-set-variable]
scene/gui/rich_text_label.cpp:869:8: warning: variable 'size' set but not used [-Wunused-but-set-variable]
scene/main/viewport.cpp:705:14: warning: variable 'xform' set but not used [-Wunused-but-set-variable]
scene/main/viewport.cpp:706:8: warning: variable 'ss' set but not used [-Wunused-but-set-variable]
scene/main/viewport.cpp:726:14: warning: variable 'xform' set but not used [-Wunused-but-set-variable]
scene/main/viewport.cpp:727:8: warning: variable 'ss' set but not used [-Wunused-but-set-variable]
scene/resources/material.cpp:430:7: warning: variable 'using_world' set but not used [-Wunused-but-set-variable]
servers/visual/shader_language.cpp:2026:7: warning: variable 'all_const' set but not used [-Wunused-but-set-variable]
servers/visual/visual_server_scene.cpp:1383:28: warning: variable 'z_max_cam' set but not used [-Wunused-but-set-variable]
```

Also fixes two [-Wunused-value] warnings:
```
scene/gui/text_edit.cpp:4405:20: warning: statement has no effect [-Wunused-value]
servers/visual/visual_server_scene.cpp:905:48: warning: value computed is not used [-Wunused-value]
```

Some of those are bugs and need further work, they are identified with
`// FIXME` comments.
2018-09-27 16:25:24 +02:00
..
base_button.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
base_button.h Add a binary mask to allow configuration of which mouse buttons the BaseButton will respond to. 2018-03-13 23:59:53 +01:00
box_container.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
box_container.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
button.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
button.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
center_container.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
center_container.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
check_box.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
check_box.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
check_button.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
check_button.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
color_picker.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
color_picker.h fix ColorPickerButton.get_popup() 2018-07-10 15:06:36 +02:00
color_rect.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
color_rect.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
container.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
container.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
control.cpp Tweak some editor texts' capitalization, use "Go to" instead of "Goto" 2018-09-25 22:51:13 +02:00
control.h Add expand/collapse all buttons for the "Errors" tab 2018-09-12 23:53:10 -03:00
dialogs.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
dialogs.h Fix typos with codespell 2018-02-21 19:46:06 +01:00
file_dialog.cpp Make EditorFileDialog be able to pick a folder when entering it 2018-09-21 19:42:06 -03:00
file_dialog.h Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
gradient_edit.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
gradient_edit.h Many fixes to gradient editor, which was pretty broken. Closes #19308 2018-09-07 13:49:10 -03:00
graph_edit.cpp Merge pull request #21982 from luzpaz/misc-typos 2018-09-13 10:59:00 +02:00
graph_edit.h Massive rewrite to AnimationTree. Many APIs changed in order to: 2018-08-20 13:39:16 -03:00
graph_node.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
graph_node.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
grid_container.cpp Merge pull request #16977 from SASUPERNOVA/master 2018-05-01 16:32:30 +02:00
grid_container.h Updated fork to match current version of Godot. 2018-04-15 14:53:28 +03:00
item_list.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
item_list.h Fix converting to tileset crashes Godot if existing file is not tileset 2018-03-23 21:27:30 +07:00
label.cpp Fix Label::get_minimum_size not updating cache size for autowrap 2018-09-19 14:05:44 -03:00
label.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
line_edit.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
line_edit.h Do not use theme to set LineEdit right_icon 2018-08-11 12:04:26 +02:00
link_button.cpp Make some debug prints verbose-only, remove others 2018-08-24 14:59:01 +02:00
link_button.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
margin_container.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
margin_container.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
menu_button.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
menu_button.h Opens the menu with the same parent on mouse focus 2018-07-24 19:59:40 -03:00
nine_patch_rect.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
nine_patch_rect.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
option_button.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
option_button.h Add item_focused signal to OptionButton 2018-02-23 13:01:28 +01:00
panel.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
panel.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
panel_container.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
panel_container.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
popup.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
popup.h Many fixes to gradient editor, which was pretty broken. Closes #19308 2018-09-07 13:49:10 -03:00
popup_menu.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
popup_menu.h context menu improvements 2018-07-26 08:58:35 -04:00
progress_bar.cpp -Added AnimationGraphPlayer (still missing features) 2018-06-18 22:12:08 -03:00
progress_bar.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
range.cpp Fix type of Range allow_greater/allow_lesser properties 2018-08-16 14:24:17 +02:00
range.h Allow editing of some unbound properties when hinted (or no range hinted) 2018-05-16 09:13:41 -03:00
reference_rect.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
reference_rect.h Fix ReferenceRect border 2018-08-11 10:37:03 +03:00
rich_text_label.cpp Fix warnings about set but unused variables [-Wunused-but-set-variable] 2018-09-27 16:25:24 +02:00
rich_text_label.h Add proper strikethrough BBCode to RichTextLabel 2018-09-23 16:25:43 -03:00
scroll_bar.cpp Rename ScrollBar's drag_slave to drag_node 2018-09-15 00:55:22 +02:00
scroll_bar.h Rename ScrollBar's drag_slave to drag_node 2018-09-15 00:55:22 +02:00
scroll_container.cpp Fix warnings for operator precedence disambiguation [-Wparentheses] 2018-09-27 10:29:48 +02:00
scroll_container.h Entirely new (and much improved) animation editor. 2018-06-07 12:52:00 -03:00
SCsub
separator.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
separator.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
shortcut.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
shortcut.h Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
slider.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
slider.h Added scrollable property to Sliders 2018-07-07 13:48:34 +03:00
spin_box.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
spin_box.h SpinBoxes calculate correctly their width before first redraw. 2018-02-05 22:42:30 +01:00
split_container.cpp Fixed some warnings found with Cppcheck. 2018-05-14 02:14:56 -03:00
split_container.h Fixes a bas resizing with SplitContainer 2018-01-20 21:03:20 +01:00
tab_container.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
tab_container.h Fix "find and replace" initializing with wrong size 2018-06-13 14:08:04 -03:00
tabs.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
tabs.h context menu improvements 2018-07-26 08:58:35 -04:00
text_edit.cpp Fix warnings about set but unused variables [-Wunused-but-set-variable] 2018-09-27 16:25:24 +02:00
text_edit.h Merge pull request #21219 from AlexHolly/fix-textedit-shows-nothing 2018-09-12 17:41:12 +02:00
texture_button.cpp The TextureButton's bitmask takes into account the stretch mode selected 2018-01-19 00:01:23 +01:00
texture_button.h The TextureButton's bitmask takes into account the stretch mode selected 2018-01-19 00:01:23 +01:00
texture_progress.cpp Merge pull request #21654 from Calinou/textureprogress-transparent-tint 2018-09-12 10:51:23 +02:00
texture_progress.h Add support for bilinear bars in TextureProgress 2018-05-12 10:23:06 +02:00
texture_rect.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
texture_rect.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
tool_button.cpp Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
tool_button.h Add missing copyright headers and fix formatting 2018-01-05 01:22:23 +01:00
tree.cpp Fix warnings for operator precedence disambiguation [-Wparentheses] 2018-09-27 10:29:48 +02:00
tree.h Removed obsoleted core/helper/value_evaluator.h and moved math_fieldwise to core/math/ 2018-09-23 14:58:15 +02:00
video_player.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
video_player.h Fix Video Player issue with audio mix_rate when different than 44100 2018-01-07 12:57:48 -03:00
viewport_container.cpp ViewportContainer passes input down to children viewports 2018-01-15 00:36:57 +01:00
viewport_container.h ViewportContainer passes input down to children viewports 2018-01-15 00:36:57 +01:00