1
0
Fork 0

shaped-texture: Rename GObjectClass pointer variable

To be consistent with the rest of mutter, call it `object_class`.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3443>
This commit is contained in:
Jonas Ådahl 2023-11-08 15:03:19 +08:00 committed by Marge Bot
parent 68412cedac
commit 08d2155b6c

View file

@ -117,9 +117,9 @@ G_DEFINE_TYPE_WITH_CODE (MetaShapedTexture, meta_shaped_texture, G_TYPE_OBJECT,
static void
meta_shaped_texture_class_init (MetaShapedTextureClass *klass)
{
GObjectClass *gobject_class = (GObjectClass *) klass;
GObjectClass *object_class = (GObjectClass *) klass;
gobject_class->dispose = meta_shaped_texture_dispose;
object_class->dispose = meta_shaped_texture_dispose;
signals[SIZE_CHANGED] = g_signal_new ("size-changed",
G_TYPE_FROM_CLASS (klass),