summaryrefslogtreecommitdiffstats
path: root/scene/gui/texture_progress_bar.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-07-03 21:29:37 +0200
committerkobewi <kobewi4e@gmail.com>2023-07-17 19:35:57 +0200
commitde4a3fa151d2cef139149bb2b878ec8923ba2ce8 (patch)
tree1a023d3bf44bef9f87522c94c4f951bf164877f5 /scene/gui/texture_progress_bar.cpp
parent2c552140686b5366e48c61a1a15001f15359cccc (diff)
downloadredot-engine-de4a3fa151d2cef139149bb2b878ec8923ba2ce8.tar.gz
Unify and streamline connecting to Resource changes
Diffstat (limited to 'scene/gui/texture_progress_bar.cpp')
-rw-r--r--scene/gui/texture_progress_bar.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/scene/gui/texture_progress_bar.cpp b/scene/gui/texture_progress_bar.cpp
index c43549b9b6..70c2cc9d65 100644
--- a/scene/gui/texture_progress_bar.cpp
+++ b/scene/gui/texture_progress_bar.cpp
@@ -31,7 +31,6 @@
#include "texture_progress_bar.h"
#include "core/config/engine.h"
-#include "core/core_string_names.h"
#include "scene/resources/atlas_texture.h"
void TextureProgressBar::set_under_texture(const Ref<Texture2D> &p_texture) {
@@ -162,12 +161,12 @@ void TextureProgressBar::_set_texture(Ref<Texture2D> *p_destination, const Ref<T
return;
}
if (destination.is_valid()) {
- destination->disconnect(CoreStringNames::get_singleton()->changed, callable_mp(this, &TextureProgressBar::_texture_changed));
+ destination->disconnect_changed(callable_mp(this, &TextureProgressBar::_texture_changed));
}
destination = p_texture;
if (destination.is_valid()) {
// Pass `CONNECT_REFERENCE_COUNTED` to avoid early disconnect in case the same texture is assigned to different "slots".
- destination->connect(CoreStringNames::get_singleton()->changed, callable_mp(this, &TextureProgressBar::_texture_changed), CONNECT_REFERENCE_COUNTED);
+ destination->connect_changed(callable_mp(this, &TextureProgressBar::_texture_changed), CONNECT_REFERENCE_COUNTED);
}
_texture_changed();
}