[gtk: 25/31] Rename GTK_ICON_LOOKUP_LOAD_IN_THREAD to GTK_ICON_LOOKUP_PRELOAD
- From: Alexander Larsson <alexl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk: 25/31] Rename GTK_ICON_LOOKUP_LOAD_IN_THREAD to GTK_ICON_LOOKUP_PRELOAD
- Date: Mon, 10 Feb 2020 12:48:52 +0000 (UTC)
commit 344ad650315f0bff2a34c861aab7c309b6b510ef
Author: Alexander Larsson <alexl redhat com>
Date: Mon Feb 10 11:43:47 2020 +0100
Rename GTK_ICON_LOOKUP_LOAD_IN_THREAD to GTK_ICON_LOOKUP_PRELOAD
gtk/gtkiconhelper.c | 2 +-
gtk/gtkicontheme.c | 2 +-
gtk/gtkicontheme.h | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtkiconhelper.c b/gtk/gtkiconhelper.c
index a18316ec04..9b68d49831 100644
--- a/gtk/gtkiconhelper.c
+++ b/gtk/gtkiconhelper.c
@@ -99,7 +99,7 @@ ensure_paintable_for_gicon (GtkIconHelper *self,
icon_theme = gtk_css_icon_theme_value_get_icon_theme (style->core->icon_theme);
flags = get_icon_lookup_flags (self, style);
if (preload)
- flags |= GTK_ICON_LOOKUP_LOAD_IN_THREAD;
+ flags |= GTK_ICON_LOOKUP_PRELOAD;
width = height = gtk_icon_helper_get_size (self);
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c
index 6dbbff8e42..0232396f19 100644
--- a/gtk/gtkicontheme.c
+++ b/gtk/gtkicontheme.c
@@ -2272,7 +2272,7 @@ gtk_icon_theme_lookup_icon (GtkIconTheme *self,
gtk_icon_theme_unlock (self);
- if (flags & GTK_ICON_LOOKUP_LOAD_IN_THREAD)
+ if (flags & GTK_ICON_LOOKUP_PRELOAD)
{
gboolean has_texture = FALSE;
diff --git a/gtk/gtkicontheme.h b/gtk/gtkicontheme.h
index f0fc704ed4..f2904708f1 100644
--- a/gtk/gtkicontheme.h
+++ b/gtk/gtkicontheme.h
@@ -44,16 +44,16 @@ typedef struct _GtkIconTheme GtkIconTheme;
* when symbolic icon names are given
* @GTK_ICON_LOOKUP_FORCE_SYMBOLIC: Try to always load symbolic icons, even
* when regular icon names are given
- * @GTK_ICON_LOOKUP_LOAD_IN_THREAD: Starts loading the texture in the background
+ * @GTK_ICON_LOOKUP_PREALOAD: Starts loading the texture in the background
* so it is ready when later needed.
*
* Used to specify options for gtk_icon_theme_lookup_icon()
*/
typedef enum
{
- GTK_ICON_LOOKUP_FORCE_REGULAR = 1 << 0,
- GTK_ICON_LOOKUP_FORCE_SYMBOLIC = 1 << 1,
- GTK_ICON_LOOKUP_LOAD_IN_THREAD = 1 << 2,
+ GTK_ICON_LOOKUP_FORCE_REGULAR = 1 << 0,
+ GTK_ICON_LOOKUP_FORCE_SYMBOLIC = 1 << 1,
+ GTK_ICON_LOOKUP_PRELOAD = 1 << 2,
} GtkIconLookupFlags;
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]