[clutter/wip/wayland-2: 10/22] clutter-wayland-surface: Rename the width/height properties



commit 5da83ee6bc2e85bb2e019b93c445e4d29c2a59c5
Author: Neil Roberts <neil linux intel com>
Date:   Mon Jan 9 16:13:03 2012 +0000

    clutter-wayland-surface: Rename the width/height properties
    
    This patch renames the width/height properties to
    surface-width/surface-height so that they won't override the
    width/height properties of ClutterActor which have different
    semantics.

 clutter/wayland/clutter-wayland-surface.c |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/clutter/wayland/clutter-wayland-surface.c b/clutter/wayland/clutter-wayland-surface.c
index c368c1e..3f1c28e 100644
--- a/clutter/wayland/clutter-wayland-surface.c
+++ b/clutter/wayland/clutter-wayland-surface.c
@@ -54,8 +54,8 @@
 enum
 {
   PROP_SURFACE = 1,
-  PROP_WIDTH,
-  PROP_HEIGHT
+  PROP_SURFACE_WIDTH,
+  PROP_SURFACE_HEIGHT
 };
 
 #if 0
@@ -204,12 +204,12 @@ set_size (ClutterWaylandSurface *self,
   if (priv->width != width)
     {
       priv->width = width;
-      g_object_notify (G_OBJECT (self), "width");
+      g_object_notify (G_OBJECT (self), "surface-width");
     }
   if (priv->height != height)
     {
       priv->height = height;
-      g_object_notify (G_OBJECT (self), "height");
+      g_object_notify (G_OBJECT (self), "surface-height");
     }
 
   clutter_actor_set_size (CLUTTER_ACTOR (self), priv->width, priv->height);
@@ -289,10 +289,10 @@ clutter_wayland_surface_get_property (GObject *object,
     case PROP_SURFACE:
       g_value_set_pointer (value, priv->surface);
       break;
-    case PROP_WIDTH:
+    case PROP_SURFACE_WIDTH:
       g_value_set_uint (value, priv->width);
       break;
-    case PROP_HEIGHT:
+    case PROP_SURFACE_HEIGHT:
       g_value_set_uint (value, priv->height);
       break;
     default:
@@ -420,23 +420,23 @@ clutter_wayland_surface_class_init (ClutterWaylandSurfaceClass *klass)
 
   g_object_class_install_property (object_class, PROP_SURFACE, pspec);
 
-  pspec = g_param_spec_uint ("width",
+  pspec = g_param_spec_uint ("surface-width",
                              P_("Surface width"),
                              P_("The width of the underlying wayland surface"),
                              0, G_MAXUINT,
                              0,
                              G_PARAM_READABLE);
 
-  g_object_class_install_property (object_class, PROP_WIDTH, pspec);
+  g_object_class_install_property (object_class, PROP_SURFACE_WIDTH, pspec);
 
-  pspec = g_param_spec_uint ("height",
+  pspec = g_param_spec_uint ("surface-height",
                              P_("Surface height"),
                              P_("The height of the underlying wayland surface"),
                              0, G_MAXUINT,
                              0,
                              G_PARAM_READABLE);
 
-  g_object_class_install_property (object_class, PROP_HEIGHT, pspec);
+  g_object_class_install_property (object_class, PROP_SURFACE_HEIGHT, pspec);
 }
 
 /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]