mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 03:22:04 +00:00
2008-02-04 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-shader.c (clutter_shader_constructor): Keep the constructor line under the 80 columns using a variable.
This commit is contained in:
parent
2764fa2f87
commit
b884bc4dd5
@ -1,3 +1,8 @@
|
||||
2008-02-04 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-shader.c (clutter_shader_constructor): Keep the
|
||||
constructor line under the 80 columns using a variable.
|
||||
|
||||
2008-02-04 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.c:
|
||||
|
@ -181,12 +181,11 @@ clutter_shader_constructor (GType type,
|
||||
guint n_params,
|
||||
GObjectConstructParam *params)
|
||||
{
|
||||
GObject *object;
|
||||
GObjectClass *parent_class;
|
||||
GObject *object;
|
||||
|
||||
object
|
||||
= G_OBJECT_CLASS (clutter_shader_parent_class)->constructor (type,
|
||||
n_params,
|
||||
params);
|
||||
parent_class = G_OBJECT_CLASS (clutter_shader_parent_class);
|
||||
object = parent_class->constructor (type, n_params, params);
|
||||
|
||||
/* add this instance to the global list of shaders */
|
||||
clutter_shaders_list = g_list_prepend (clutter_shaders_list, object);
|
||||
|
Loading…
Reference in New Issue
Block a user