diff --git a/Common/glibinterface.cpp b/Common/glibinterface.cpp index 744536b..1556cbe 100644 --- a/Common/glibinterface.cpp +++ b/Common/glibinterface.cpp @@ -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; }