summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2016-02-07 04:11:16 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2016-02-07 04:45:54 +0200
commitb1077ef62d64c8d215290dc58d98345531274484 (patch)
tree1efcecee4d8454f3bd014cd45f10cdc7e0568942
parent736f61ecf7a71709396a1380d2f3f591f8a557b1 (diff)
downloadmetacity-b1077ef62d64c8d215290dc58d98345531274484.tar.gz
libmetacity: rename theme invalidation function
-rw-r--r--libmetacity/meta-theme.c4
-rw-r--r--libmetacity/meta-theme.h2
-rw-r--r--src/ui/frames.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/libmetacity/meta-theme.c b/libmetacity/meta-theme.c
index a22cd3d9..23975014 100644
--- a/libmetacity/meta-theme.c
+++ b/libmetacity/meta-theme.c
@@ -233,7 +233,7 @@ meta_theme_load (MetaTheme *theme,
}
void
-meta_theme_style_invalidate (MetaTheme *theme)
+meta_theme_invalidate (MetaTheme *theme)
{
GList *variants;
GList *l;
@@ -295,7 +295,7 @@ meta_theme_set_composited (MetaTheme *theme,
theme->composited = composited;
- meta_theme_style_invalidate (theme);
+ meta_theme_invalidate (theme);
}
void
diff --git a/libmetacity/meta-theme.h b/libmetacity/meta-theme.h
index 799550e8..f7414289 100644
--- a/libmetacity/meta-theme.h
+++ b/libmetacity/meta-theme.h
@@ -160,7 +160,7 @@ gboolean meta_theme_load (MetaTheme
const gchar *theme_name,
GError **error);
-void meta_theme_style_invalidate (MetaTheme *theme);
+void meta_theme_invalidate (MetaTheme *theme);
MetaStyleInfo *meta_theme_get_style_info (MetaTheme *theme,
const gchar *variant);
diff --git a/src/ui/frames.c b/src/ui/frames.c
index 52dc9b41..d3c74d5f 100644
--- a/src/ui/frames.c
+++ b/src/ui/frames.c
@@ -413,7 +413,7 @@ meta_frames_style_updated (GtkWidget *widget)
compositing_manager = meta_prefs_get_compositing_manager ();
meta_theme_set_composited (theme, compositing_manager);
- meta_theme_style_invalidate (theme);
+ meta_theme_invalidate (theme);
meta_frames_font_changed (frames);