[metacity] theme: remove frames.h include
- From: Alberts Muktupāvels <muktupavels src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [metacity] theme: remove frames.h include
- Date: Tue, 12 Jan 2016 20:58:44 +0000 (UTC)
commit 6fd7df6ed2d4ad49ac0ae3e35cb08e10a07f6285
Author: Alberts Muktupāvels <alberts muktupavels gmail com>
Date: Tue Jan 12 21:59:23 2016 +0200
theme: remove frames.h include
This was added because we needed object type to build widget
path. Now object type is ignored and object name is used instead.
src/ui/theme.c | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
---
diff --git a/src/ui/theme.c b/src/ui/theme.c
index acecdfe..400b2b4 100644
--- a/src/ui/theme.c
+++ b/src/ui/theme.c
@@ -51,7 +51,6 @@
*/
#include <config.h>
-#include "frames.h" /* for META_TYPE_FRAMES */
#include "prefs.h"
#include "theme.h"
#include "theme-parser.h"
@@ -6058,7 +6057,7 @@ meta_theme_create_style_info (GdkScreen *screen,
compositing_manager = meta_prefs_get_compositing_manager ();
style_info->styles[META_STYLE_ELEMENT_FRAME] =
- create_style_context (META_TYPE_FRAMES,
+ create_style_context (G_TYPE_NONE,
NULL,
provider,
"decoration",
@@ -6067,7 +6066,7 @@ meta_theme_create_style_info (GdkScreen *screen,
compositing_manager ? "ssd" : "solid-csd",
NULL);
style_info->styles[META_STYLE_ELEMENT_TITLEBAR] =
- create_style_context (GTK_TYPE_HEADER_BAR,
+ create_style_context (G_TYPE_NONE,
style_info->styles[META_STYLE_ELEMENT_FRAME],
provider,
"headerbar",
@@ -6076,21 +6075,21 @@ meta_theme_create_style_info (GdkScreen *screen,
"default-decoration",
NULL);
style_info->styles[META_STYLE_ELEMENT_TITLE] =
- create_style_context (GTK_TYPE_LABEL,
+ create_style_context (G_TYPE_NONE,
style_info->styles[META_STYLE_ELEMENT_TITLEBAR],
provider,
"label",
GTK_STYLE_CLASS_TITLE,
NULL);
style_info->styles[META_STYLE_ELEMENT_BUTTON] =
- create_style_context (GTK_TYPE_BUTTON,
+ create_style_context (G_TYPE_NONE,
style_info->styles[META_STYLE_ELEMENT_TITLEBAR],
provider,
"button",
"titlebutton",
NULL);
style_info->styles[META_STYLE_ELEMENT_IMAGE] =
- create_style_context (GTK_TYPE_IMAGE,
+ create_style_context (G_TYPE_NONE,
style_info->styles[META_STYLE_ELEMENT_BUTTON],
provider,
"image",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]