mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 04:31:09 +00:00
gtk: Add deprecation guards for newest pango deprecations
This commit is contained in:
parent
d921a4fe84
commit
9df707da22
@ -404,6 +404,7 @@ gtk_im_module_initialize (void)
|
||||
return;
|
||||
}
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
while (!have_error && pango_read_line (file, line_buf))
|
||||
{
|
||||
const char *p;
|
||||
@ -485,6 +486,7 @@ gtk_im_module_initialize (void)
|
||||
have_error = TRUE;
|
||||
}
|
||||
}
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
if (have_error)
|
||||
{
|
||||
|
@ -77,7 +77,9 @@ get_module_path (void)
|
||||
|
||||
g_free (default_dir);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
result = pango_split_file_list (module_path);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
g_free (module_path);
|
||||
|
||||
return result;
|
||||
@ -417,7 +419,9 @@ load_modules (const char *module_str)
|
||||
|
||||
GTK_NOTE (MODULES, g_print ("Loading module list: %s\n", module_str));
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
module_names = pango_split_file_list (module_str);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
for (i = 0; module_names[i]; i++)
|
||||
module_list = load_module (module_list, module_names[i]);
|
||||
|
||||
|
@ -190,7 +190,9 @@ G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
g_string_append_printf (contents, "# ModulesPath = %s\n#\n", path);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
dirs = pango_split_file_list (path);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
dirs_done = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL);
|
||||
|
||||
for (i = 0; dirs[i]; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user