Fixed armhf compiler issues

This commit is contained in:
liudun 2024-02-20 09:48:40 +08:00
parent 1a5245d5ec
commit 367492e0dc
1 changed files with 16 additions and 16 deletions

View File

@ -25,24 +25,24 @@
double getDefaultFontSize()
{
GSettingsSchemaSource *schema_source = NULL;
GSettingsSchema *schema = NULL;
// GSettingsSchemaSource *schema_source = NULL;
// GSettingsSchema *schema = NULL;
schema_source = g_settings_schema_source_get_default();
if(schema_source){
schema = g_settings_schema_source_lookup (schema_source,KEY_SYSTEM_FONT_SIZE,TRUE);
if(schema){
GVariant *size;
unsigned long length;
GSettings *gs;
// schema_source = g_settings_schema_source_get_default();
// if(schema_source){
// schema = g_settings_schema_source_lookup (schema_source,KEY_SYSTEM_FONT_SIZE,TRUE);
// if(schema){
// GVariant *size;
// unsigned long length;
// GSettings *gs;
gs = g_settings_new(STYLE_TYPE_SCHEMA);
size = g_settings_get_default_value(gs, KEY_SYSTEM_FONT_SIZE);
QString fontsize(g_variant_get_string(size,&length));
g_object_unref(gs);
// gs = g_settings_new(STYLE_TYPE_SCHEMA);
// size = g_settings_get_default_value(gs, KEY_SYSTEM_FONT_SIZE);
// QString fontsize(g_variant_get_string(size,&length));
// g_object_unref(gs);
return fontsize.toDouble();
}
}
// return fontsize.toDouble();
// }
// }
return DEFAULT_FONT_SIZE;
}