From be1c9d677d8bab3a14d4f966da313dd6d2dd3428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gilles=20Roudi=C3=A8re?= Date: Wed, 7 Dec 2022 12:11:28 +0100 Subject: Rename all gdnative occurences to gdextension Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension ->Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION ->EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface --- modules/webrtc/webrtc_data_channel_extension.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/webrtc') diff --git a/modules/webrtc/webrtc_data_channel_extension.h b/modules/webrtc/webrtc_data_channel_extension.h index 467163ed93..92bd9619ef 100644 --- a/modules/webrtc/webrtc_data_channel_extension.h +++ b/modules/webrtc/webrtc_data_channel_extension.h @@ -70,8 +70,8 @@ public: virtual Error put_packet(const uint8_t *p_buffer, int p_buffer_size) override; /** GDExtension **/ - GDVIRTUAL2R(Error, _get_packet, GDNativeConstPtr, GDNativePtr); - GDVIRTUAL2R(Error, _put_packet, GDNativeConstPtr, int); + GDVIRTUAL2R(Error, _get_packet, GDExtensionConstPtr, GDExtensionPtr); + GDVIRTUAL2R(Error, _put_packet, GDExtensionConstPtr, int); WebRTCDataChannelExtension() {} }; -- cgit v1.2.3