summaryrefslogtreecommitdiff
path: root/vcl/source/fontsubset
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-10 00:34:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-11 09:05:05 +0100
commit2fcd82ae659ef8a61da08748f684ca928a2d3dc3 (patch)
treecb991eef88f388a1f3103502a4f5f2141e071282 /vcl/source/fontsubset
parent75b074f7875448a811750865eaa8e7dc69bbd7fc (diff)
callcatcher: unused listPositionAt
Diffstat (limited to 'vcl/source/fontsubset')
-rw-r--r--vcl/source/fontsubset/list.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/vcl/source/fontsubset/list.c b/vcl/source/fontsubset/list.c
index 90a075466447..8b0b0f827a20 100644
--- a/vcl/source/fontsubset/list.c
+++ b/vcl/source/fontsubset/list.c
@@ -140,24 +140,6 @@ int listIsEmpty(list this)
return this->aCount == 0;
}
-int listFind(list this, void *el)
-{
- lnode *ptr;
- assert(this != 0);
-
- ptr = this->head;
-
- while (ptr) {
- if (ptr->value == el) {
- this->cptr = ptr;
- return 1;
- }
- ptr = ptr->next;
- }
-
- return 0;
-}
-
int listNext(list this)
{
return listSkipForward(this, 1);