blob: 5d7d122b8546da2d339f6c1c767061e5eba36feb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- src/pitivi-settingswindow.c.orig Mon Dec 20 13:55:04 2004
+++ src/pitivi-settingswindow.c Mon Dec 20 13:55:54 2004
@@ -701,12 +701,13 @@
GObjectConstructParam * construct_properties)
{
GObject *obj;
+ PitiviSettingsWindow *self;
/* Invoke parent constructor. */
obj = G_OBJECT_CLASS (parent_class)->constructor (type, n_construct_properties,
construct_properties);
/* do stuff. */
- PitiviSettingsWindow *self = (PitiviSettingsWindow *) obj;
+ self = (PitiviSettingsWindow *) obj;
pitivi_settingswindow_create_gui (self);
|