~ubuntu-branches/ubuntu/lucid/gtkhtml3.14/lucid

« back to all changes in this revision

Viewing changes to gtkhtml/htmlclue.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-06-02 11:18:16 UTC
  • mfrom: (1.2.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602111816-t7rv5r7z58i0lkb4
Tags: 1:3.27.2-0ubuntu1
* New upstream version
* debian/rules:
  - updated library version

Show diffs side-by-side

added added

removed removed

Lines of Context:
586
586
}
587
587
 
588
588
static HTMLObject *
589
 
head (HTMLObject *self)
 
589
clue_head (HTMLObject *self)
590
590
{
591
591
        return HTML_CLUE (self)->head;
592
592
}
593
593
 
594
594
static HTMLObject *
595
 
tail (HTMLObject *self)
 
595
clue_tail (HTMLObject *self)
596
596
{
597
597
        HTMLObject *obj;
598
598
 
642
642
        object_class->save_plain = save_plain;
643
643
        object_class->search = search;
644
644
        object_class->append_selection_string = append_selection_string;
645
 
        object_class->head = head;
646
 
        object_class->tail = tail;
 
645
        object_class->head = clue_head;
 
646
        object_class->tail = clue_tail;
647
647
        object_class->get_recursive_length = get_recursive_length;
648
648
        object_class->get_n_children = get_n_children;
649
649
        object_class->get_child = get_child;