diff --git a/core/debugger/remote_debugger_peer.cpp b/core/debugger/remote_debugger_peer.cpp index 499b221ce6a7..1afb7fe09b4e 100644 --- a/core/debugger/remote_debugger_peer.cpp +++ b/core/debugger/remote_debugger_peer.cpp @@ -173,12 +173,12 @@ Error RemoteDebuggerPeerTCP::connect_to_host(const String &p_host, uint16_t p_po } else { const int ms = waits[i]; OS::get_singleton()->delay_usec(ms * 1000); - print_verbose("Remote Debugger: Connection failed with status: '" + String::num(tcp_client->get_status()) + "', retrying in " + String::num(ms) + " msec."); + print_verbose("Remote Debugger: Connection failed with status: '" + String::num_int64(tcp_client->get_status()) + "', retrying in " + String::num_int64(ms) + " msec."); } } if (tcp_client->get_status() != StreamPeerTCP::STATUS_CONNECTED) { - ERR_PRINT(vformat("Remote Debugger: Unable to connect. Status: %s.", String::num(tcp_client->get_status()))); + ERR_PRINT(vformat("Remote Debugger: Unable to connect. Status: %s.", String::num_int64(tcp_client->get_status()))); return FAILED; } connected = true; diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index 8670cb490201..e5e27a11c613 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1747,7 +1747,7 @@ void EditorFileSystem::_save_filesystem_cache(EditorFileSystemDirectory *p_dir, if (!p_dir) { return; //none } - p_file->store_line("::" + p_dir->get_path() + "::" + String::num(p_dir->modified_time)); + p_file->store_line("::" + p_dir->get_path() + "::" + String::num_int64(p_dir->modified_time)); for (int i = 0; i < p_dir->files.size(); i++) { const EditorFileSystemDirectory::FileInfo *file_info = p_dir->files[i]; diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index 8abfd8d62dea..8b142198cd8c 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -2209,7 +2209,7 @@ Vector EditorExportPlatform::gen_export_flags(BitField breakpoints; ScriptEditor::get_singleton()->get_breakpoints(&breakpoints); diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index ece9616b69b2..fd5d1cc3cbbe 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -757,7 +757,7 @@ void ScriptTextEditor::_update_bookmark_list() { line = line.substr(0, 50); } - bookmarks_menu->add_item(String::num((int)bookmark_list[i] + 1) + " - `" + line + "`"); + bookmarks_menu->add_item(String::num_int64(bookmark_list[i] + 1) + " - `" + line + "`"); bookmarks_menu->set_item_metadata(-1, bookmark_list[i]); } } @@ -912,7 +912,7 @@ void ScriptTextEditor::_update_breakpoint_list() { line = line.substr(0, 50); } - breakpoints_menu->add_item(String::num((int)breakpoint_list[i] + 1) + " - `" + line + "`"); + breakpoints_menu->add_item(String::num_int64(breakpoint_list[i] + 1) + " - `" + line + "`"); breakpoints_menu->set_item_metadata(-1, breakpoint_list[i]); } } diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index ee2d592ed3fd..14c1b698251b 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -229,7 +229,7 @@ void TextEditor::_update_bookmark_list() { line = line.substr(0, 50); } - bookmarks_menu->add_item(String::num((int)bookmark_list[i] + 1) + " - \"" + line + "\""); + bookmarks_menu->add_item(String::num_int64(bookmark_list[i] + 1) + " - \"" + line + "\""); bookmarks_menu->set_item_metadata(-1, bookmark_list[i]); } } diff --git a/editor/plugins/text_shader_editor.cpp b/editor/plugins/text_shader_editor.cpp index 2bf14203e661..693cf2436ef7 100644 --- a/editor/plugins/text_shader_editor.cpp +++ b/editor/plugins/text_shader_editor.cpp @@ -1075,7 +1075,7 @@ void TextShaderEditor::_update_bookmark_list() { line = line.substr(0, 50); } - bookmarks_menu->add_item(String::num((int)bookmark_list[i] + 1) + " - \"" + line + "\""); + bookmarks_menu->add_item(String::num_int64(bookmark_list[i] + 1) + " - \"" + line + "\""); bookmarks_menu->set_item_metadata(-1, bookmark_list[i]); } } diff --git a/modules/regex/regex.cpp b/modules/regex/regex.cpp index 02f97b3d0615..9424d57e9d09 100644 --- a/modules/regex/regex.cpp +++ b/modules/regex/regex.cpp @@ -196,7 +196,7 @@ Error RegEx::compile(const String &p_pattern, bool p_show_error) { if (p_show_error) { PCRE2_UCHAR32 buf[256]; pcre2_get_error_message_32(err, buf, 256); - String message = String::num(offset) + ": " + String((const char32_t *)buf); + String message = String::num_int64(offset) + ": " + String((const char32_t *)buf); ERR_PRINT(message.utf8()); } return FAILED; diff --git a/modules/websocket/emws_peer.cpp b/modules/websocket/emws_peer.cpp index c5768c9f0b39..d8cb7642531f 100644 --- a/modules/websocket/emws_peer.cpp +++ b/modules/websocket/emws_peer.cpp @@ -93,7 +93,7 @@ Error EMWSPeer::connect_to_url(const String &p_url, Ref p_tls_option requested_url = scheme + host; if (port && ((scheme == "ws://" && port != 80) || (scheme == "wss://" && port != 443))) { - requested_url += ":" + String::num(port); + requested_url += ":" + String::num_int64(port); } if (!path.is_empty()) { diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp index 95ef4def3e27..3684089d09d8 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -3163,7 +3163,7 @@ Error EditorExportPlatformIOS::run(const Ref &p_preset, int if (p_debug_flags.has_flag(DEBUG_FLAG_REMOTE_DEBUG)) { cmd_args_list.push_back("--remote-debug"); - cmd_args_list.push_back(get_debug_protocol() + host + ":" + String::num(remote_port)); + cmd_args_list.push_back(get_debug_protocol() + host + ":" + String::num_int64(remote_port)); List breakpoints; ScriptEditor::get_singleton()->get_breakpoints(&breakpoints); diff --git a/platform/ios/ios.mm b/platform/ios/ios.mm index 26067b94bb05..e257b506a946 100644 --- a/platform/ios/ios.mm +++ b/platform/ios/ios.mm @@ -191,7 +191,7 @@ String iOS::get_rate_url(int p_app_id) const { String app_url_path = "itms-apps://itunes.apple.com/app/idAPP_ID"; - String ret = app_url_path.replace("APP_ID", String::num(p_app_id)); + String ret = app_url_path.replace("APP_ID", String::num_int64(p_app_id)); print_verbose(vformat("Returning rate url %s", ret)); return ret;