Rename ShortCut to Shortcut which is more grammatically correct

See https://github.com/godotengine/godot/issues/16863#issuecomment-685236980.
This commit is contained in:
Hugo Locurcio 2020-09-09 21:53:24 +02:00
parent 7015c59e2e
commit 3e0226515e
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
17 changed files with 99 additions and 98 deletions

View file

@ -2246,7 +2246,7 @@ Point2i Node3DEditorViewport::_get_warped_mouse_motion(const Ref<InputEventMouse
}
static bool is_shortcut_pressed(const String &p_path) {
Ref<ShortCut> shortcut = ED_GET_SHORTCUT(p_path);
Ref<Shortcut> shortcut = ED_GET_SHORTCUT(p_path);
if (shortcut.is_null()) {
return false;
}