]> git.sur5r.net Git - glabels/commitdiff
Fixed incorrect storage of glPrefsModel's base object
authorJim Evins <evins@snaught.com>
Sun, 25 Oct 2009 04:05:16 +0000 (00:05 -0400)
committerJim Evins <evins@snaught.com>
Sun, 25 Oct 2009 04:11:27 +0000 (00:11 -0400)
Parent object was declared as a pointer, so there was not enough room for
the parent/base object.  This potentially could have caused havoc with this
object.

src/prefs-model.h

index b2cc1cbd85289ee79154971bf5c295081afe181c..c7873fb42fcc5b7268031f1144b84fe3eeba6e4a 100644 (file)
@@ -52,7 +52,7 @@ typedef struct _glPrefsModelPrivate   glPrefsModelPrivate;
 
 
 struct _glPrefsModel {
-       GObject          *object;
+       GObject           parent;
 
        GConfClient      *gconf_client;