Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-06 06:34:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 06:34:50 +0300
commit15ad01492e71cc318db4a7d2f038f2c9959aa2ce (patch)
treec9a8378149cf7122ab75e53e95b9bbd7ba09bdbf /source
parent7f6a4bc416d71e6f4af38453c07d4dba1c02e333 (diff)
Cleanup: remove deprecated/unused preferences DNA
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h16
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c5
2 files changed, 1 insertions, 20 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 0627210a19b..c9ada7e3637 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -164,9 +164,6 @@ typedef struct ThemeUI {
uiWidgetStateColors wcol_state;
- /** Deprecated, but we keep it for do_versions (2.66.1). */
- uiPanelColors panel;
-
char widget_emboss[4];
/* fac: 0 - 1 for blend factor, width in pixels */
@@ -176,7 +173,6 @@ typedef struct ThemeUI {
char editor_outline[4];
short pad[1];
- char iconfile[256]; // FILE_MAXFILE length
float icon_alpha;
float icon_saturation;
char _pad[4];
@@ -1003,7 +999,7 @@ typedef enum eText_Draw_Options {
/** Grease Pencil Settings.
* #UserDef.gp_settings */
typedef enum eGP_UserdefSettings {
- GP_PAINT_DOSMOOTH = (1 << 0),
+ // GP_PAINT_DOSMOOTH = (1 << 0), /* UNUSED */
GP_PAINT_DOSIMPLIFY = (1 << 1),
} eGP_UserdefSettings;
@@ -1047,16 +1043,6 @@ typedef enum eTimecodeStyles {
USER_TIMECODE_SUBRIP = 100,
} eTimecodeStyles;
-/* theme drawtypes */
-/* XXX: These are probably only for the old UI engine? */
-typedef enum eTheme_DrawTypes {
- TH_MINIMAL = 0,
- TH_ROUNDSHADED = 1,
- TH_ROUNDED = 2,
- TH_OLDSKOOL = 3,
- TH_SHADED = 4,
-} eTheme_DrawTypes;
-
/** #UserDef.ndof_flag (3D mouse options) */
typedef enum eNdof_Flag {
NDOF_SHOW_GUIDE = (1 << 0),
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 2b06ae06dea..4063995bef3 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -1196,11 +1196,6 @@ static void rna_def_userdef_theme_ui(BlenderRNA *brna)
RNA_def_property_range(prop, 0.0f, 24.0f);
RNA_def_property_update(prop, 0, "rna_userdef_update");
- prop = RNA_def_property(srna, "icon_file", PROP_STRING, PROP_FILEPATH);
- RNA_def_property_string_sdna(prop, NULL, "iconfile");
- RNA_def_property_ui_text(prop, "Icon File", "");
- RNA_def_property_update(prop, 0, "rna_userdef_update");
-
prop = RNA_def_property(srna, "icon_alpha", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_ui_text(prop, "Icon Alpha", "Transparency of icons in the interface, to reduce contrast");
RNA_def_property_update(prop, 0, "rna_userdef_update");