diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-23 10:00:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 10:00:31 +0200 |
commit | 393a0152eaccaf21313b6186adeea1cf6a7f0623 (patch) | |
tree | 28044bd643418b4293494391b3c1d32163126dd8 /scene/gui | |
parent | 791da4cb83bda1b3ef8dc167e3db7cccf10e8762 (diff) | |
parent | 50be65bf4314d9b3c5888f5f02d6ffae504aae7a (diff) |
Merge pull request #32055 from qarmin/some_code_fixes
Changed some code found by Clang Tidy and Coverity
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/rich_text_label.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/rich_text_label.h b/scene/gui/rich_text_label.h index 6755f9ef2a..1c212700ef 100644 --- a/scene/gui/rich_text_label.h +++ b/scene/gui/rich_text_label.h @@ -456,7 +456,7 @@ public: void push_meta(const Variant &p_meta); void push_table(int p_columns); void push_fade(int p_start_index, int p_length); - void push_shake(int p_level, float p_rate); + void push_shake(int p_strength, float p_rate); void push_wave(float p_frequency, float p_amplitude); void push_tornado(float p_frequency, float p_radius); void push_rainbow(float p_saturation, float p_value, float p_frequency); |