2007-10-11 Tomas Frydrych <tf@o-hand.com>

* clutter/clutter-entry.c:
	Avoid using C++ reserverd words to name variables.
This commit is contained in:
Tomas Frydrych 2007-10-11 15:07:36 +00:00
parent 914c930cee
commit 422c725a47
2 changed files with 265 additions and 260 deletions

519
ChangeLog

File diff suppressed because it is too large Load Diff

View File

@ -888,12 +888,12 @@ clutter_entry_set_text (ClutterEntry *entry,
}
else
{
gchar new[priv->max_length + 1];
gchar * n = g_malloc0 (priv->max_length + 1);
g_utf8_strncpy (new, text, priv->max_length);
g_utf8_strncpy (n, text, priv->max_length);
g_free (priv->text);
priv->text = g_strdup (new);
priv->text = n;
}
}
else