diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
commit | b7a0971ad2d168e31d9a3ba93bbc59865bb1c337 (patch) | |
tree | 1d67cb0af1f6c2c8f2b054ceef7f9f764b6ff35d /scene/gui/texture_button.cpp | |
parent | 64b68192cc8a13e7ed87a8f64b2d5dd6f15e4056 (diff) | |
parent | 25b28aa8877faafde9f1770f4afccab95d681d43 (diff) | |
download | redot-engine-b7a0971ad2d168e31d9a3ba93bbc59865bb1c337.tar.gz |
Merge pull request #97934 from adamscott/give-AThousandShips-a-break
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
Diffstat (limited to 'scene/gui/texture_button.cpp')
-rw-r--r-- | scene/gui/texture_button.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/texture_button.cpp b/scene/gui/texture_button.cpp index c267ff93c6..47bb0643b3 100644 --- a/scene/gui/texture_button.cpp +++ b/scene/gui/texture_button.cpp @@ -340,11 +340,11 @@ Ref<BitMap> TextureButton::get_click_mask() const { Ref<Texture2D> TextureButton::get_texture_focused() const { return focused; -}; +} void TextureButton::set_texture_focused(const Ref<Texture2D> &p_focused) { focused = p_focused; -}; +} void TextureButton::_set_texture(Ref<Texture2D> *p_destination, const Ref<Texture2D> &p_texture) { DEV_ASSERT(p_destination); |