From a4f5a33b141ff9e7de04da69b3db0ee2b58616f3 Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 21 Aug 2024 09:43:53 +0200 Subject: [PATCH] libobs: Remove obs_proprety_text_type() Typoed function name, deprecated in 21.1. --- libobs/obs-properties.c | 5 ----- libobs/obs-properties.h | 5 ----- 2 files changed, 10 deletions(-) diff --git a/libobs/obs-properties.c b/libobs/obs-properties.c index 9bb2fcb46..a489a4a9e 100644 --- a/libobs/obs-properties.c +++ b/libobs/obs-properties.c @@ -1494,11 +1494,6 @@ obs_property_frame_rate_fps_range_max(obs_property_t *p, size_t idx) : (struct media_frames_per_second){0}; } -enum obs_text_type obs_proprety_text_type(obs_property_t *p) -{ - return obs_property_text_type(p); -} - enum obs_group_type obs_property_group_type(obs_property_t *p) { struct group_data *data = get_type_data(p, OBS_PROPERTY_GROUP); diff --git a/libobs/obs-properties.h b/libobs/obs-properties.h index 2b9b5a7d9..16339aad8 100644 --- a/libobs/obs-properties.h +++ b/libobs/obs-properties.h @@ -433,11 +433,6 @@ EXPORT obs_properties_t *obs_property_group_content(obs_property_t *p); EXPORT enum obs_button_type obs_property_button_type(obs_property_t *p); EXPORT const char *obs_property_button_url(obs_property_t *p); -#ifndef SWIG -OBS_DEPRECATED -EXPORT enum obs_text_type obs_proprety_text_type(obs_property_t *p); -#endif - #ifdef __cplusplus } #endif