aboutsummaryrefslogtreecommitdiffstats
path: root/android/skin
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2010-11-17 17:55:17 +0100
committerDavid 'Digit' Turner <digit@android.com>2010-11-17 17:55:17 +0100
commit4c0f745dc80d392fddea23eb8d4d7d86425ce0c6 (patch)
tree5da693710d1a3e81a7af3590619c8cbc6c7942d8 /android/skin
parent44e750e6d0375543f0d91d0a68432ae9c8489ccd (diff)
downloadexternal_qemu-4c0f745dc80d392fddea23eb8d4d7d86425ce0c6.zip
external_qemu-4c0f745dc80d392fddea23eb8d4d7d86425ce0c6.tar.gz
external_qemu-4c0f745dc80d392fddea23eb8d4d7d86425ce0c6.tar.bz2
Update android/utils/ with misc. new features.
This introduces a few new features to android/utils/ that will be used in later patches. + <android/utils/assert.h> to handle assertions + <android/utils/vector.h> to handle dynamic arrays + <android/utils/reflist.h> slightly updated (more docs) + <android/utils/refset.h> implements a set of pointers Change-Id: Iebc14cfefd1c0e8aaecda9958a980d40f0be610a
Diffstat (limited to 'android/skin')
-rw-r--r--android/skin/composer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/skin/composer.c b/android/skin/composer.c
index 6076449..ca0f123 100644
--- a/android/skin/composer.c
+++ b/android/skin/composer.c
@@ -254,7 +254,7 @@ skin_plate_free( SkinPlate* p )
skin_region_reset( p->any.region );
if (p->any.parent) {
- areflist_del( p->any.parent->group.children, p );
+ areflist_delFirst( p->any.parent->group.children, p );
}
}
@@ -362,7 +362,7 @@ skin_viewport_free( SkinViewport* v )
{
SkinPlate* space = v->space;
if (space != NULL) {
- areflist_del( space->space.viewports, v );
+ areflist_delFirst( space->space.viewports, v );
v->space = NULL;
}
skin_region_reset( v->update );