From cfb60228313d16c3a373e8d39b6c05e310ab4ef4 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 11 Dec 2008 12:15:49 +0000 Subject: [PATCH] Code style fixes Fix the arguments alignment whenever not consistent with the coding style rules. --- clutter/clutter-text.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/clutter/clutter-text.c b/clutter/clutter-text.c index dcd6ec231..db5432896 100644 --- a/clutter/clutter-text.c +++ b/clutter/clutter-text.c @@ -1327,10 +1327,10 @@ clutter_text_real_del_prev (ClutterText *self, } static gboolean -clutter_text_real_activate (ClutterText *self, - const gchar *action, - guint keyval, - ClutterModifierType modifiers) +clutter_text_real_activate (ClutterText *self, + const gchar *action, + guint keyval, + ClutterModifierType modifiers) { ClutterTextPrivate *priv = self->priv; @@ -1345,19 +1345,19 @@ clutter_text_real_activate (ClutterText *self, } static gboolean -clutter_text_real_page_up (ClutterText *self, - const gchar *action, - guint keyval, - ClutterModifierType modifiers) +clutter_text_real_page_up (ClutterText *self, + const gchar *action, + guint keyval, + ClutterModifierType modifiers) { return FALSE; } static gboolean -clutter_text_real_page_down (ClutterText *self, - const gchar *action, - guint keyval, - ClutterModifierType modifiers) +clutter_text_real_page_down (ClutterText *self, + const gchar *action, + guint keyval, + ClutterModifierType modifiers) { return FALSE; }