Drop leftover function for toolbar style

This commit is contained in:
Simon Steinbeiss
2021-01-04 00:47:35 +01:00
committed by Simon Steinbeiß
parent 6af11c82b7
commit f4e9726e20
2 changed files with 0 additions and 33 deletions

View File

@@ -385,25 +385,3 @@ xtm_settings_get_default (void)
}
return settings;
}
GType
xtm_toolbar_style_get_type (void)
{
static GType type = G_TYPE_INVALID;
static const GEnumValue values[] = {
{ XTM_TOOLBAR_STYLE_DEFAULT, "DEFAULT", N_("Default") },
{ XTM_TOOLBAR_STYLE_SMALL, "SMALL", N_("Small") },
{ XTM_TOOLBAR_STYLE_LARGE, "LARGE", N_("Large") },
{ XTM_TOOLBAR_STYLE_TEXT, "TEXT", N_("Text") },
{ 0, NULL, NULL }
};
if (type != G_TYPE_INVALID)
return type;
type = g_enum_register_static ("XtmToolbarStyle", values);
return type;
}