X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gobject%2Fgvaluearray.c;h=fb92ba854c54e002f1db69941675fa3b09c33c54;hb=f2ceb74e91e05e9556622bc2cde7ab57cbc30ea3;hp=e3fe2554cb9f33eb5f77dfc0578102069990f44b;hpb=6fe6b0300b382fd000f75edd3ad968d29b276a0d;p=platform%2Fupstream%2Fglib.git diff --git a/gobject/gvaluearray.c b/gobject/gvaluearray.c index e3fe255..fb92ba8 100644 --- a/gobject/gvaluearray.c +++ b/gobject/gvaluearray.c @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . */ /* @@ -47,13 +45,13 @@ * g_value_unset() as the clear function using g_array_set_clear_func(), * for instance, the following code: * - * |[ + * |[ * GValueArray *array = g_value_array_new (10); * ]| * * can be replaced by: * - * |[ + * |[ * GArray *array = g_array_sized_new (FALSE, TRUE, sizeof (GValue), 10); * g_array_set_clear_func (array, (GDestroyNotify) g_value_unset); * ]| @@ -259,7 +257,7 @@ g_value_array_append (GValueArray *value_array, /** * g_value_array_insert: * @value_array: #GValueArray to add an element to - * @index_: insertion position, must be <= value_array->n_values + * @index_: insertion position, must be <= value_array->n_values * @value: (allow-none): #GValue to copy into #GValueArray, or %NULL * * Insert a copy of @value at specified position into @value_array. If @value @@ -282,8 +280,8 @@ g_value_array_insert (GValueArray *value_array, i = value_array->n_values; value_array_grow (value_array, value_array->n_values + 1, FALSE); if (index + 1 < value_array->n_values) - g_memmove (value_array->values + index + 1, value_array->values + index, - (i - index) * sizeof (value_array->values[0])); + memmove (value_array->values + index + 1, value_array->values + index, + (i - index) * sizeof (value_array->values[0])); memset (value_array->values + index, 0, sizeof (value_array->values[0])); if (value) { @@ -297,8 +295,7 @@ g_value_array_insert (GValueArray *value_array, * g_value_array_remove: * @value_array: #GValueArray to remove an element from * @index_: position of value to remove, which must be less than - * value_array->n_values + * @value_array->n_values * * Remove the value at position @index_ from @value_array. * @@ -317,8 +314,8 @@ g_value_array_remove (GValueArray *value_array, g_value_unset (value_array->values + index); value_array->n_values--; if (index < value_array->n_values) - g_memmove (value_array->values + index, value_array->values + index + 1, - (value_array->n_values - index) * sizeof (value_array->values[0])); + memmove (value_array->values + index, value_array->values + index + 1, + (value_array->n_values - index) * sizeof (value_array->values[0])); value_array_shrink (value_array); if (value_array->n_prealloced > value_array->n_values) memset (value_array->values + value_array->n_values, 0, sizeof (value_array->values[0]));