[gnome-shell/wip/clutter-deprecation-fixes: 1/18] st-widget: Make into a concrete class



commit 6d93d453067c1af5e1df0d0d6454d15432e7ead8
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Mon Feb 13 11:43:13 2012 -0500

    st-widget: Make into a concrete class
    
    ClutterActor is concrete, so StWidget should be too.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=670034

 src/st/st-widget.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/st/st-widget.c b/src/st/st-widget.c
index 5ef88c6..f09093b 100644
--- a/src/st/st-widget.c
+++ b/src/st/st-widget.c
@@ -110,7 +110,7 @@ static guint signals[LAST_SIGNAL] = { 0, };
 
 gfloat st_slow_down_factor = 1.0;
 
-G_DEFINE_ABSTRACT_TYPE (StWidget, st_widget, CLUTTER_TYPE_ACTOR);
+G_DEFINE_TYPE (StWidget, st_widget, CLUTTER_TYPE_ACTOR);
 
 #define ST_WIDGET_GET_PRIVATE(obj)    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ST_TYPE_WIDGET, StWidgetPrivate))
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]