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

« back to all changes in this revision

Viewing changes to src/rhsview.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:
36
36
 
37
37
static ViewClass *parent_class = NULL;
38
38
 
39
 
static void
40
 
rhsview_destroy( GtkObject *object )
41
 
{
42
 
        Rhsview *rhsview;
43
 
 
44
 
#ifdef DEBUG
45
 
        printf( "rhsview_destroy\n" );
46
 
#endif /*DEBUG*/
47
 
 
48
 
        g_return_if_fail( object != NULL );
49
 
        g_return_if_fail( IS_RHSVIEW( object ) );
50
 
 
51
 
        rhsview = RHSVIEW( object );
52
 
 
53
 
        /* My instance destroy stuff.
54
 
         */
55
 
 
56
 
        GTK_OBJECT_CLASS( parent_class )->destroy( object );
57
 
}
58
 
 
59
39
/* Get this if ws->mode changes.
60
40
 */
61
41
static void
188
168
static void
189
169
rhsview_class_init( RhsviewClass *class )
190
170
{
191
 
        GtkObjectClass *object_class = (GtkObjectClass*) class;
192
171
        vObjectClass *vobject_class = (vObjectClass*) class;
193
172
        ViewClass *view_class = (ViewClass*) class;
194
173
 
195
174
        parent_class = g_type_class_peek_parent( class );
196
175
 
197
 
        object_class->destroy = rhsview_destroy;
198
 
 
199
176
        /* Create signals.
200
177
         */
201
178