libobs: Remove obs_proprety_text_type()

Typoed function name, deprecated in 21.1.
This commit is contained in:
derrod
2024-08-21 09:43:53 +02:00
committed by Ryan Foster
parent bda463932e
commit a4f5a33b14
2 changed files with 0 additions and 10 deletions

View File

@@ -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);

View File

@@ -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