analysis: ClutterText

Remove unused variables.
This commit is contained in:
Emmanuele Bassi 2010-02-11 15:19:32 +00:00
parent c2d434e3af
commit 09644e4bb6

View File

@ -4682,7 +4682,6 @@ clutter_text_delete_chars (ClutterText *self,
{ {
ClutterTextPrivate *priv; ClutterTextPrivate *priv;
GString *new = NULL; GString *new = NULL;
gint len;
gint pos; gint pos;
gint num_pos; gint num_pos;
gint start_pos; gint start_pos;
@ -4694,7 +4693,6 @@ clutter_text_delete_chars (ClutterText *self,
if (!priv->text) if (!priv->text)
return; return;
len = priv->n_chars;
new = g_string_new (priv->text); new = g_string_new (priv->text);
if (priv->position == -1) if (priv->position == -1)