summaryrefslogtreecommitdiffstats
path: root/platform/ios
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-29 10:10:32 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-29 10:10:32 +0200
commit947f5a8741d26c35ab225abf6185cba486068361 (patch)
treebb9f608a1a8fcaf6a4e395bc3208fd48bd97ad0b /platform/ios
parent164f28e06610cc9666c9007e68bfe28ae67add34 (diff)
parent31e7ee63f21e7b86d41cdb724824d4dc0804f281 (diff)
downloadredot-engine-947f5a8741d26c35ab225abf6185cba486068361.tar.gz
Merge pull request #91247 from AThousandShips/callable_fix
Fix unsafe uses of `Callable.is_null()`
Diffstat (limited to 'platform/ios')
-rw-r--r--platform/ios/display_server_ios.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/display_server_ios.mm b/platform/ios/display_server_ios.mm
index cd6f855d77..62bc55dce8 100644
--- a/platform/ios/display_server_ios.mm
+++ b/platform/ios/display_server_ios.mm
@@ -218,7 +218,7 @@ void DisplayServerIOS::send_window_event(DisplayServer::WindowEvent p_event) con
}
void DisplayServerIOS::_window_callback(const Callable &p_callable, const Variant &p_arg) const {
- if (!p_callable.is_null()) {
+ if (p_callable.is_valid()) {
p_callable.call(p_arg);
}
}