Fix warnings
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 2 Jan 2009 08:01:23 +0000 (17:01 +0900)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 2 Jan 2009 08:01:23 +0000 (17:01 +0900)
src/ui/gui/psppire-output-window.c
src/ui/gui/psppire-syntax-window.c
src/ui/gui/psppire.c

index abbcae719ef3cd82fd7d4d37437f21dcf961d4ec..89075424e0c6a1465098e68f41009cff05ba9147 100644 (file)
@@ -80,9 +80,6 @@ static GObjectClass *parent_class;
 static void
 psppire_output_window_finalize (GObject *object)
 {
-  GObjectClass *class = G_OBJECT_GET_CLASS (object);
-
-
   if (G_OBJECT_CLASS (parent_class)->finalize)
     (*G_OBJECT_CLASS (parent_class)->finalize) (object);
 }
index 3fe6d1a69f79d3f5a3c14364e7ddfe432f386a96..421ae2ca2be82db921619a68f8ab9d5bc0faa4d7 100644 (file)
@@ -75,8 +75,6 @@ static GObjectClass *parent_class ;
 static void
 psppire_syntax_window_finalize (GObject *object)
 {
-  GObjectClass *class = G_OBJECT_GET_CLASS (object);
-
   if (G_OBJECT_CLASS (parent_class)->finalize)
     (*G_OBJECT_CLASS (parent_class)->finalize) (object);
 }
@@ -85,6 +83,7 @@ psppire_syntax_window_finalize (GObject *object)
 static void
 psppire_syntax_window_class_init (PsppireSyntaxWindowClass *class)
 {
+  parent_class = g_type_class_peek_parent (class);
 }
 
 
@@ -93,8 +92,6 @@ psppire_syntax_window_base_init (PsppireSyntaxWindowClass *class)
 {
   GObjectClass *object_class = G_OBJECT_CLASS (class);
 
-  parent_class = g_type_class_peek_parent (class);
-
   object_class->finalize = psppire_syntax_window_finalize;
 }
 
index 62117a01bc0bbfc779476da08d3117a0913d59ad..b2861d8aee924b641136d93d139488f2c25e69c9 100644 (file)
@@ -283,7 +283,7 @@ parse_non_options (int key, char *arg, struct argp_state *state)
 
        ds_destroy (&syntax);
 
-       psppire_window_set_filename (the_data_window, arg);
+       psppire_window_set_filename (PSPPIRE_WINDOW (the_data_window), arg);
 
        break;
       }