~ubuntu-branches/ubuntu/vivid/nip2/vivid-proposed

« back to all changes in this revision

Viewing changes to src/heapmodel.c

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2012-03-18 17:12:03 UTC
  • mfrom: (1.6.3)
  • Revision ID: package-import@ubuntu.com-20120318171203-tyz1ohtgsktf3uk1
Tags: 7.28.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        return( NULL );
102
102
}
103
103
 
104
 
static void
105
 
heapmodel_finalize( GObject *gobject )
106
 
{
107
 
        Heapmodel *heapmodel;
108
 
 
109
 
        g_return_if_fail( gobject != NULL );
110
 
        g_return_if_fail( IS_HEAPMODEL( gobject ) );
111
 
 
112
 
        heapmodel = HEAPMODEL( gobject );
113
 
 
114
 
        G_OBJECT_CLASS( parent_class )->finalize( gobject );
115
 
}
116
 
 
117
104
static Rhs *
118
105
heapmodel_get_rhs( Heapmodel *heapmodel )
119
106
{
193
180
static void
194
181
heapmodel_class_init( HeapmodelClass *class )
195
182
{
196
 
        GObjectClass *gobject_class = (GObjectClass *) class;
197
183
        HeapmodelClass *heapmodel_class = (HeapmodelClass *) class;
198
184
        iContainerClass *icontainer_class = (iContainerClass *) class;
199
185
 
201
187
 
202
188
        /* Init methods.
203
189
         */
204
 
        gobject_class->finalize = heapmodel_finalize;
205
 
 
206
190
        icontainer_class->parent_add = heapmodel_parent_add;
207
191
 
208
192
        heapmodel_class->new_heap = heapmodel_real_new_heap;